Tagged Questions
0
votes
0answers
19 views
export data from a figure plotted using 'fill' command
my function plots a graph using 'fill' command which takes vertical and horizontal coordinates from two corresponding matrices X and Y. It also fills the polygons with values from matrix ex and my ...
2
votes
2answers
170 views
Matlab: Find area enclosed by points (x,y)
I've got 8 points that create the outline of an eight-sided polygon in two-dimensional space. I need to find the area enclosed be these points, but how do I do that using matlab?
The eight points ...
1
vote
2answers
68 views
buffer zone for polygon in matlab
I would like to create a buffer zone for the given simple polygon (no convex, no holes) in matlab without using bufferm function.
vx = [ 2 4 6 4 2]; % polygon vertices
vy = [ 2 4 3 2 2];
figure;
% ...
-2
votes
3answers
142 views
extract grid coordinates of the polygon [closed]
I have a grid map, constructed using Matlab. I am placing some polygons on it. How can i extract the grid coordinates that are inside these polygons? thanks..
% construct grid
MAX_X=10;
MAX_Y=10;
...
1
vote
1answer
377 views
Sorting clockwise polygon points in MATLAB
I have 2 vectors that are x and y coordinates of the 8 vertexes of a polygon
x=[5 5 7 7 9 9 5 7]
y=[8 6 6 8 6 8 10 10]
I wanna sort them (clockwise) to obtain the right vectors (to draw ...
2
votes
3answers
1k views
MATLAB contourf plot for an irregular domain
I am stuck with this problem for a long time now. I have a polygonal region (lets say, a hexagon). I can calculate the values of certain function at any point inside the polygon. Now I need to create ...
5
votes
1answer
386 views
Get simple polygons
I have a polygon C as below:
C = 10 0
2 0
2 2
0 2
2 0
0 0
0 10
10 10
where the first column represents x's coordinate and the ...
0
votes
1answer
133 views
Creating a heptagon in MATLAB
I need to create a heptagon. I want to do this by creating one triangle and then loop to draw it again after I have rotated it.
x1 = [ 0.5, 0.48, 0.55 ];
y1 = [ 0.5, 0.578, 0.558 ];
fill( x1, y1, ...
2
votes
2answers
230 views
MATLAB: Four-part color logo(polygon)
My task is to write MATLAB code to produce a 4-part logo as shown in the screenshot. The top left should be black and the bottom right should be white. The other
two colours should be chosen randomly ...
-1
votes
1answer
476 views
drawing a regular polygon over an image and calculate the area
I want to draw a regular polygon over an image in matlab and then calculate the area of that polygon.
11
votes
3answers
2k views
Algorithm to generate random 2D polygon
I'm not sure how to approach this problem. I'm not sure how complex a task it is. My aim is to have an algorithm that generates any polygon. My only requirement is that the polygon is not complex ...
4
votes
1answer
644 views
Finding the Twins when Implementing Catmull-Clark subdivision using Half-Edge mesh
Note: The description became a little longer than expected. Do you know a readable implementation of this algorithm using this mesh? Please let me know!
I'm trying to implement Catmull-Clark ...
0
votes
1answer
442 views
MATLAB vision library shapes function
The Lane departure system in MATLAB 2011 demos for Computer Vision toolbox has the following function.
hShapeIns1 = vision.ShapeInserter( ...
'Shape', 'Polygons', ...
...
0
votes
1answer
287 views
How do I Calculate the area of polygons in the checkerboard image in MATLAB?
Please guide me to write the program in MATLAB.
I have a checkerboard image. Each square of the chess board has given a number (index number).
On this image, a series of parallel lines are drawn.
...
0
votes
1answer
661 views
How to find ALL points that lie on the outline of a polygon's convex hull (Matlab)
sorry if this question might seem simple but I couldn't figure it out.
Imagine two arbitrary Rectangles that are randomly overlaped so that their outlines intersect at only two locations. Now you cut ...
3
votes
2answers
2k views
How can I create a filled polygon from unordered edge data in MATLAB?
I want to create a polygon using edge data (X,Y coordinates of each point of edge) that is unordered, and I want to fill that polygon with some color.
Any suggestions how I can accomplish this?
2
votes
2answers
520 views
Problem drawing a polygon on data clusters in MATLAB
I have some data points which I have devided into them into some clusters with some clustering algorithms as the picture below:(it might takes some time for the image to appear)
Each color ...
1
vote
2answers
1k views
Drawing and filling different polygons at the same time in MATLAB
I have the code below. It load a CSV file into memory. This file contains the coordinates for different polygons.Each row of this file has X,Y coordinates and a string which tells that to which ...
3
votes
2answers
2k views
Drawing a polygon around groups of datapoints in MATLAB
I have a set of datapoints each of which belongs to a certain cluster (group). I need to draw a polygon around each of these clusters. Does anyone knows how to do it?
It doesn't matter if I use or ...
5
votes
5answers
5k views
Find the corners of a polygon represented by a region mask
BW = poly2mask(x, y, m, n) computes a
binary region of interest (ROI) mask,
BW, from an ROI polygon, represented
by the vectors x and y. The size of BW
is m-by-n.
poly2mask sets ...
3
votes
6answers
4k views
How to represent a polygon with hole(s)?
It's usually popular to work with polygons with their vertices sorted CW or CCW in vectors(2*1 or 1*2 matrices). However, how to state polygons with holes in vectors?
I'm going to apply various ...
6
votes
1answer
3k views
how to sketch a polygon in a matrix or binary image in order to use image processing functions?
I'm developing a matlab program in which I uses polygons(concave or convex). I need to use image processing functions like imdilate or imerode and etc on the polygons. To this end, I should convert my ...
27
votes
11answers
8k views
Random points inside a Polygon
I have a 4 side convex Polygon defined by 4 points in 2D, and I want to be able to generate random points inside it.
If it really simplifies the problem, I can limit the polygon to a parallelogram, ...