Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
439 views

Extract contours from ContourPlot in Mathematica

I have a function f(x,y) of two variables, of which I need to know the location of the curves at which it crosses zero. ContourPlot does that very efficiently (that is: it uses clever multi-grid ...
7
votes
1answer
581 views

matplotlib - extracting data from contour lines

I would like to get data from a single contour of evenly spaced 2D data (an image-like data). Based on the example found in a similar question: How can I get the (x,y) values of the line that is ...
6
votes
4answers
1k views

Calculating the contours of a 3D heightmap?

I am looking for a function or example to produce a list of lines representing contours at a specific height within a heightmap. Eg, Lines[] = GetContours(Heights[512,512], HeightValue) Where ...
5
votes
2answers
67 views

How to check if one contour is nested/embedded in opencv

I have two contours and I want to check the relation between them (if one of them is nested). Normally, I would use the findContours function with CV_RETR_TREE retrieval mode. However, I obtained the ...
5
votes
1answer
651 views

Matplotlib Contour Clabel Location

I would like to control the location of matplotlib clabels on a contour plot, but without utilizing the manual=True flag in clabel. For example, I would like to specify an x-coordinate, and have ...
4
votes
2answers
80 views

How can I calculate the area within a contour in R?

I'm wondering if it is possible to caclulate the area within a contour in R. For example, the area of the contour that results from: sw<-loess(m~l+d) mypredict<-predict(sw, fitdata) # Where ...
4
votes
1answer
446 views

Cut polygons using contour line beneath the polygon layers

I would like to cut a polygon layer, according to the elevation, into two parts (upper and lower part). The polygon might convex or concave, and the position to cut might vary from each other. The ...
4
votes
6answers
674 views

Connect the dots - connect the line between contour points

I have a gray scale image of 64x64. I found the dots of the contour by a simple algorithm: find brightest spot (Example: 100) divide by 2 (100/2 = 50) define a band around the result (50-5=45 to ...
4
votes
2answers
2k views

Drawing an iso line of a 2D implicit scalar field

I have an implicit scalar field defined in 2D, for every point in 2D I can make it compute an exact scalar value but its a somewhat complex computation. I would like to draw an iso-line of that ...
3
votes
1answer
49 views

Python : 2d contour plot from 3 lists : x, y and rho?

I have a simple problem in python and matplotlib. I have 3 lists : x, y and rho with rho[i] a density at the point x[i], y[i]. All values of x and y are between -1. and 1. but they are not in a ...
3
votes
3answers
97 views

How to draw the contour of the objects in label matrix

I have a label matrix of segmented image. For example, 1 1 1 2 2 2 3 3 3 4 4 4 1 1 1 2 2 2 3 3 3 4 4 4 1 1 1 2 2 2 3 3 3 4 4 4 1 1 1 2 2 2 3 3 3 4 4 4 1 1 1 2 2 2 3 3 3 4 4 4 1 1 1 2 2 2 3 3 3 4 4 4 ...
3
votes
2answers
153 views

Number density contours in Python

I'm trying to reproduce this plot in python with little luck: It's a simple number density contour currently done in SuperMongo. I'd like to drop it in favor of Python but the closest I can get ...
3
votes
1answer
931 views

Python/Matplotlib - Colorbar Range and Display Values

When using matplotlib with a contour plot, I'm having trouble getting the colorbar to display as I want. I've read through numerous similar examples, but have still not been able to get what I want. ...
3
votes
1answer
480 views

Matplotlib - Contour plot with with single value

I want to make a contour plot of some data, but it is possible that all values in the field at the same value. This causes an error in matplotlib, which makes sense since there really isn't a contour ...
3
votes
1answer
510 views

.NET Open Source Contour Plotting

I am looking for an Open Source .NET Library (or wrapper to a library) that will create contour plots from a set of values along a grid/mesh. ZedGraph is the closest thing I could find ...
3
votes
5answers
2k views

How do I generate a contour graph?

How do I generate a contour graph like this: It's easy enough if the points are on a regular grid, but what if they aren't, like in my example? Is there a fairly simple algorithm to determine the ...
3
votes
3answers
938 views

python contour for binary 2D matrix

I want to calculate a convex hull around a shape in a binary NxM matrix. The convex hull algorithm expects a list of coordinates, so I take numpy.argwhere(im) to have all shape point coordinates. ...
3
votes
2answers
4k views

Calculate the center of a contour/Area

I'm working on a Image-processing chain that seperates a single object by color and contour and then calculates the y-position of this object. How do I calculate the center of a contour or area with ...
3
votes
4answers
9k views

OpenCv Blob/Contour labeling

Hi i have been working on this for a while and yet to have no good solution. I am reading a video frame by frame and am using background subtraction to ' identify the region where is there movement ...
2
votes
1answer
69 views

Unordered X Y coordinate pairs + Concentration contourplot

I have 2 vectors, X and Y, corresponding to a list of unordered coordinates, and a corresponding concentration vector C for each point. I'd like to plot this on a structured grid as a 2D contour ...
2
votes
1answer
53 views

Draw Perpendicular line to a line in opencv

I better explain my problem with an Image I have a contour and a line which is passing through that contour. At the intersection point of contour and line I want to draw a perpendicular line at the ...
2
votes
1answer
103 views

time series for binary shapes

I have been working around extracting the time series from shapes based on distances to center of mass clockwise starting from angle 0 to 360. My Implementation that arranges contour points based on ...
2
votes
1answer
137 views

MATLAB - 3D Contour Plot (Hydrogen 2p Orbitals)

I've got the following code which works for plotting an x-y slice of the Hydrogen 2pz orbital: %probability densities pd_psi_210 = @(r,theta,phi) exp(-r).*(r.^2).*(cos(theta).^2)/(32*pi); ...
2
votes
1answer
270 views

Opencv match contour image

I'd like to know what would be the best strategy to compare a group of contours, in fact are edges resulting of a canny edges detection, from two pictures, in order to know which pair is more alike. ...
2
votes
1answer
121 views

Contour Lines Algorithm

This could very well be a duplicate, but I could not seem to find something specific to my problem. I have a xy grid in a picture box. Each grid cell has a specific mass. I would like to create ...
2
votes
1answer
173 views

OpenCV : is a contour closed or not

I am tryig to find a way to determine if a contour is closed or not, but I am usign findContours and not cvFindContours so I dont have the flags.. Any idea how to do it? By the way, I was asked to ...
2
votes
2answers
686 views

Python matplotlib colorbar axis offset string position/location

I want to make a contour-plot with a horizontal colorbar. The bar should have labels with scientific notation. Everything goes well in the code below. However, now I want to change the position of the ...
2
votes
2answers
217 views

Removing lines from contourf graphs

Hi all I'm using scripts for generating plots easily and with exactly the same layout. That's why I'd like to create contourf graph of given data automaticcaly without black contour lines. I can do ...
2
votes
1answer
1k views

How to overlay a pcolor plot with a contour plot that uses a different colormap?

Minimum example that does not achieve it: [X,Y,Z] = peaks; figure; pcolor(X,Y,Z); shading flat; hold all; axes; contour(X,Y,Z); colormap gray; % this should only apply to the contour plot axes... ...
2
votes
2answers
447 views

Contour plot a custom function

I have a custom function which returns either 0 or 1 depending on two given inputs. function val = myFunction(val1,val2) % logic to determine if val=1 or val=0 end How can I create a contour ...
1
vote
2answers
26 views

OpenCV C++/Obj-C: Connect nearby contours

Is there a function to connect two (or more) nearby contours? Take a look at my in-/output and you'll see what I mean … My code: [... some processing ...] // getting contours ...
1
vote
0answers
53 views

How to extract the angles in facial features that will be used for facial expresion recognition

I am using Visual Studio 2010 C++ and OpencV 2.1. I used haar cascade classifiers to detect the features in the face (mouth, eyes, eyebrows). But I'm really a newbie so i was not able to make much ...
1
vote
1answer
46 views

Writing a VTK ASCII Legacy File to draw contours in VisIt

I'm trying to write a legacy .vtk file to be read into VisIt using C. Unfortunately my installed VisIt program refuses to render the VTK file that I have writing, reading: 'local host failed' Below ...
1
vote
2answers
115 views

How to draw anti aliased lines in OpenGL ES 2.0?

I am trying to draw some contours that I have stored as vertex arrays: typedef struct { float* vertices; int nrPoints; }VertexCurve; list<VertexCurve> CurveList; I am using some ...
1
vote
1answer
70 views

Hide contour linestroke on pyplot.contourf to get only fills

I have a pet project to create images of maps, where I draw the roads and other stuff over a contour plot of the terrain elevation. It is intended to plan mountain bike routes (I have made some ...
1
vote
1answer
118 views

How to draw a box over a contour ( C++,OpenCV)

I want to draw a box over a contour like this I find contour with this code vector < vector<Point> > contours; findContours(Iat, contours, CV_RETR_CCOMP, CV_CHAIN_APPROX_SIMPLE); And ...
1
vote
1answer
197 views

How to use Contours in OpenCV 2.3.1?

I recently changed from using the C interface to the C++ interface in OpenCV. In the C interface, there were a variety of things that don't seem to exist in the C++ one. Does anyone know the solution ...
1
vote
1answer
90 views

Using contours in OpenCV?

I have a variety of contours, from which I need to draw masks. To do so, I need to use CV_FILLED when drawing the contours. However, my contours aren't closed - as in they aren't complete polygons, so ...
1
vote
1answer
64 views

Put line object on top in MATLAB

I have a colored contour plot which is interpolated from a set of data locations. I would like to show the data locations on top of the contour plot. For some reason, the colored contour plot always ...
1
vote
2answers
144 views

Smoothing Data in Contour Plot with Matlibplot

I am working on creating a contour plot using Matlibplot and pyplot. I have all of the data in an array that is multidimensional. It is 12 long about 2000 wide. So it is basically a list of 12 lists ...
1
vote
1answer
203 views

Using ROI in OpenCV?

ROI can only be implemented with an rectangle. I however have a contour that I want to set as an ROI. Does anyone have an idea of how I would go about using a contour as an ROI rather than a ...
1
vote
2answers
85 views

Topographic map Contour lines extraction

I am trying to extract the contour lines from colour topographic maps. The goal is to build a 3D demonstration of the area, using an engine developed by me from zero. Untill now everything worked ...
1
vote
1answer
48 views

Umbraco contour on azure fails when form is submitted

I have installed my Umbraco site on Azure and this is working beautifully. I installed Contour on my Umbrcaco system which I did manually in order to successfully install the database. The whole form ...
1
vote
2answers
438 views

MATLAB: Make matrix from two variables and plot contour from third variable

I have 3 variables (x, y, z) each in a 192x1 vector. The data is all random and sometimes has missing values (NaNs). I would like to plot variable c against the other two variables x and y as contour ...
1
vote
1answer
2k views

how can I compute number of finger? (openCV + contour Detection)

Hello every body I start to find hand contour with findContour but when I want to compute the finger with convHull2 and convextyDefect I do not know what to do could you please help me here is my ...
1
vote
1answer
260 views

Program hangs when using “matplotlib.mlab.griddata”

I have written a script (Python 2.6) to grid data in x,y,z (.csv format), and display a contour plot of the data. The script works for some datasets but not others - even though both datasets were ...
1
vote
2answers
1k views

OpenCV: Incorrect contour around blobs

I'm trying to draw contours around blobs in a binary image, however, sometimes, openCV draws a single contour around two distinct blobs. below is an example. How can i solve this issue? Here it ...
1
vote
1answer
428 views

Contour Plot in web browser

I need to plot a contour chart in the web browser. It needs to be interactive as well. Does anyone know good javascript library, flash or flex libary to do this?
1
vote
1answer
144 views

Importing .eps file into Java program

I need to parse an Encapsulated Post Script file into Java program. More specifically, I need to be able to extract simple vectors and curve elements from it, and manipulate them after this. Is there ...
1
vote
2answers
514 views

IDL: Can IDL add a colorbar/other legend info below a contour plot, so that it doesn't overlap anything?

I am using a map_set call to draw a map, and then using contour to plot some data on top of it. I want to add a legend to this plot to make it useful, but it would have to be below the entire plot, ...

1 2