Region Of Interest, a region of an image on which algorithms are executed on.
1
vote
1answer
41 views
OpenCV, dynamic modifying of webcam display
Sorry if the title gave you the wrong idea, I tried to make it as brief as possible. In short, what I am trying to do is detect a face with Viola-Jones algorithm (already implemented), save it in a ...
1
vote
2answers
96 views
OpenCV: howto use mask parameter for feature point detection (SURF)
I want to limit a SurfFeatureDetector to a set of regions (mask). For a test I define only a single mask:
Mat srcImage; //RGB source image
Mat mask = Mat::zeros(srcImage.size(), srcImage.type());
Mat ...
0
votes
1answer
236 views
crop and Save ROI as new image in OpenCV 2.4.2 using cv::Mat
Working on Face Detection and Recognition, and after successfully detecting a face, i just want to crop the face and save it somewhere in the drive to give it for the recognition code.I am having hard ...
0
votes
1answer
79 views
OpenCV and Android: drawContrours from a ROI at correct position in image
On Android by using OpenCV I try to draw contours I got from a ROI but I am not able to draw them at the correct place at the image.
Mat resultImage= ...; // source
Rect roi = new Rect(x, y, widht, ...
0
votes
1answer
59 views
Setting roi to eyes and mouth only in camera capture and further processing
I am making a drowsiness detection system. so for that i want to set the ROI of the camera capture to eyes and mouth only and i further want to note their characteristics. i am able to set the ROI ...
1
vote
0answers
64 views
Possibly a MatIterator_ error in a Region of Interest using OpenCV 2.4. with C++
I'm working with some object detection using OpenCV 2.4.4 with C++. Unfortunately those objects that I must detect doesn't have unique shape, but they do have some really specific color range in the ...
0
votes
1answer
104 views
Fix Size ROI for all images in Matlab
I have multiple images and I am using imcrop function to take ROI in image. The problem with imcrop is it gives me different size of ROI on each image. I would like to take ROI of same size for each ...
1
vote
1answer
114 views
MATLAB: Interrupting/Disabling ROI drawing functions in a GUI
I am programming a GUI for the selection of regions of interest (ROIs) in an image.
Several kinds of regions may be chosen using built-in MATLAB functions such as impoly/imellipse.
Below, I provide ...
1
vote
1answer
301 views
open cv, rectangle region of interest referencing
I want to create a rectangle with particular coordinates width and height from an image.
And then splitting the channels and finally to thresholding the given channel in this area.
My problem is I ...
0
votes
1answer
198 views
Dilation Gradient w/ different ROI's (blob optimization) OPENCV
I'm working on a dilation problem in c++ with opencv. I've captured videoframes of a car park and in order to obtain the best blobs I came up with this.
Erosion (5x5 kernel rectangular), 3 ...
0
votes
1answer
183 views
Copying a portion of an IplImage into another Iplimage (that is of same size is the source)
I have a set of mask images that I need to use everytime I recognise a previously-known scene on my camera. All the mask images are in IplImage format. There will be instances where, for example, the ...
1
vote
1answer
149 views
roipoly matlab function equivalent in OpenCV
I am converting a matlab code into C++ using OpenCV libraries.
Can anyone tell me roipoly matlab function equivalent in OpenCV??
Or how to get the same functionality using OpenCV?
BW = roipoly(I, ...
1
vote
2answers
70 views
Deform points in a plane
Point :: (x y) is known.
I have points inside a triangular region.
I know the coordinates of the vertices in initial and final positions. I know the initial coordinates of all the points inside the ...
2
votes
3answers
146 views
Get all the points in triangular ROI in a xy plane
Input: I have some 50000 points in a xy plane as shown in the below picture.
Now, I need to get all the possible points in a triangular ROI. How to get it. It can can be opencv or Matlab.
The below ...
1
vote
2answers
236 views
Error setting ROI OpenCV Android
I am trying to figure out how to set the ROI for an Image in OpenCV on Android. I have done this on other operating systems, so I think HOW I am doing it is semantically correct, but there is an ...
0
votes
1answer
338 views
opencv/python: Draw image over a webcam stream
Hey everyone I'm trying to make a game using my webcam where I need some objects to fall down the screen while Im streaming video with my webcam (that stream being my background).
The question is: ...
3
votes
2answers
357 views
ways of copying an image into a rotated rectangle opencv c++
I work on Win7 x64, with openCV and Visual Studio 2010, programming in c++.
I want copying an image (call it image) to a rectangular area of another image (call it RR_image). This area, however, is ...
3
votes
1answer
214 views
Image copied in ROI doesn't follow camera c++. How to fix this?
I work on Windows7 x64 with opencv and Visual Studio 2010 on c++ language.
I created a project in which I show to my camera a rectangular area (call *squared_surface*). This area is recognized by ...
2
votes
1answer
138 views
Get plot points indicies
If I need to get the indices of some plotted points on a figure or axe by using box selection like the following:
load cities
education = ratings(:,6);
arts = ratings(:,7);
plot(education,arts,'+')
...
0
votes
2answers
129 views
C# polygon to mask?
I have x, y coordinates of all vertices of a polygon, say (1,1) (20,10) (10,30), how do I generate a mask with all pixels inside the polygon being 1 whereas outside being 0?
I know there is a function ...
1
vote
0answers
768 views
Measuring Intensity Using ImageJ
we have to measure the intensity of the fluorescence in certain regions of images using imagej. we came up with the below steps to measure the intensity. while it does seem correct, my question is --> ...
0
votes
3answers
193 views
Setting a rectangular ROI given a centre pixel value using OpenCV in C++
I am am trying to create a rectangular ROI on an image with the location of a certain pixel being the center of the rectangle .
How should I go about doing it ?
image= imread("C:\\image.png",1);
...
0
votes
1answer
179 views
Detecting when a face enters ROI in opencv
I have a face tracking program that reads video from a camera and draws a rectangle around the persons face. What I want to do is have the program recognise when the face enters a particular region of ...
3
votes
1answer
555 views
Select a ROI (circle and square) in matlab in order to aply a filter
I am working on matlab and I want to do an interactive selection like you do when you use the function roipoly, but I want to select or a circle or a square. I already search for funcion to select a ...
2
votes
1answer
647 views
How to crop the roi of the image
in my project I want to crop the ROI of an image. For this I create a map with the regions of interesst. Now I want to crop the area which has the most important pixels (black is not important, white ...
1
vote
0answers
101 views
Android-OpenCV Warp ROI
How can I warp a rectangular extracted ROI so that it fills the entire preview keeping proportions?
I extracted a rectangular from the camera source image (Opencv Mat) and I saved into another Mat. ...
1
vote
0answers
70 views
How can I set the position of a IMFREEHAND handles in MATLAB?
I save a given position array and handle object defined by IMFREEHAND.
After loading this data back to workspace I want to set this IMFREEHAND object again to the specified position analogous to i.e. ...
1
vote
1answer
107 views
Nextag ROI optimizer code for woo commerce. How do I remove the # sign from my order number?
Hi I am trying to install the Nextag ROI optimizer code from Nextag into my woocommerce theme/plugin. (thankyou.php template) It is working except I cannot get rid of the # symbol in the final output. ...
1
vote
1answer
618 views
OpenCV displaying 2 images adjacently in the same window
I am trying to display 2 images horizontally adjacent to each other in the same window using OpenCV.
I have tried using adjustROI function for this.Image 1 has 1088 pixels width and 2208 pixels ...
1
vote
2answers
674 views
RotatedRect ROI in OpenCV
I have a RotatedRect, I want to do some image processing in the rotated region (say extract the color histogram). How can I get the ROI? I mean get the region(pixels) so that I can do processing.
I ...
2
votes
1answer
258 views
How to obtain a contour from points with OpenCV
I'm trying to obtain a ROI from an image using VC++ and OpenCV.
I managed to display an image, get the coordinates of a point when I click on it, store these coordinates in a vector and draw lines ...
1
vote
1answer
109 views
Auto vectorization Region of interest (crop)
I have a library which has some image processing algorithms including a Region of Interest (crop) algorithm. When compiling with GCC, the auto vectorizer speeds up a lot of the code but worsens the ...
4
votes
1answer
594 views
Matlab: Real-time plotting of ROI selected with IMRECT
I have a GUI with two axes. The first axes has a low-resolution image.
What I would like to do is select an area on the first axes using IMRECT and then display that area as a high-resolution image ...
0
votes
1answer
260 views
OpenCV getRectSubPix with Alpha Channel
I need to use the getRectSubPix function in my code as part of a process of cropping an rotating a section of my image. This works fine normally with 3 channel images, but as soon as I try to use it ...
0
votes
1answer
159 views
Get a array mask for an image from a polygon shaped ROI
i am trying to make an polygon ROI for an matplotlib imshow(image). Using the Event Handling of matplotlib i am able to manually set an polygon ROI ontop of the image (via Line2D segments).
The ...
0
votes
1answer
487 views
Detection of parking lot lines and ROI openCV
I am working on a openCV project, trying to detect parking spaces and extract the ROI(Region of Interest) from an image for further vehicle detection. The image provided will consist of all empty ...
2
votes
1answer
193 views
Best way to plot array as image with ROI selection and scale
I have a 2D numpy array that I need to plot as an image with a certain scale. Within that image I need to be able to select a ROI or at least be able to display the mouse coordinates (of a specific ...
0
votes
0answers
93 views
OpenCV4Android taped area ROI
I am new in OpenCV4Android and now I'm learning the sample opencv4android projects. However, I found interesting sample called "color blob detect". Basically it works like this: You tap on a screen ...
0
votes
0answers
59 views
On html web page hit the html submit form, the data of form must email at the desired email address by ruby on rails code
I'm a beginner of Ruby and Rails, so this is probably an easy question.
This is the code which I pasted below I know how to sent this form data to desired
email id with PHP, or ASP, but I ...
0
votes
0answers
66 views
Matlab sophisticated GUI
I want to create a GUI where there will be a main image in the center,showing a whole body MRI image and depending in which area of the body will the user take the cursor and clicks to open the ...
0
votes
0answers
30 views
What is the basic ROI formula for testing?
I was looking for the answer and found various ones, related to automation etc. I would like to know how to count ROI of testing generally. I also saw ROI based on eliminations of risks which I have ...
-1
votes
1answer
313 views
ROI info in DICOM Images using Evil Dicom [closed]
Currently I am able to open, display and do some image processing on DICOM images. I can also use the mouse to draw polygons.
Can someone give me an indication on how I can make the inside of the ...
0
votes
2answers
368 views
Setting Polygon ROI with mouse in Qt
Anyone have any idea how I can implement this? I'd like to have a function basically exactly like impoly in matlab or the "polygon sections" tool in imageJ, where you click to form a polygonal ...
3
votes
3answers
2k views
Define image ROI with opencv in C
I have a question about how to define a ROI with opencv. I know what the definition of the function cvSetImageROI but I want to know if is possible to define a ROI with opencv with a different shape ...
2
votes
2answers
3k views
How to draw a rectangle in opencv dynamically according to image width and height?
i want to draw a rectangle in opencv according to the image width and height (i.e. i don't want to give a static values to cvRectangle) i want to draw a rectangle which covers most of the region of ...
0
votes
0answers
143 views
Why my OpenCV ROI does not change?
I try to loop on an image to create several ROIs (their number can be changed) but it appears that the system can only chose one.
I need that because I will try to make a LBP face detector.
Here is ...
7
votes
1answer
9k views
opencv copy an cv::Mat inside a ROI of another
I need to copy a cv::Mat image (source) to a ROI of another (Destination) cv::Mat image.
I found this reference here but it seems that it does not work for my case.
Do you have any pointers how could ...
-2
votes
1answer
551 views
How to extract region of interest after watershed segmentation algorithm in matlab
I have applied watershed segmentation algorithm on occluded leaves and found out the region of interest (ROI) for a single leaf. The regions have been labeled with different colors, as shown in the ...
0
votes
1answer
845 views
cvSetImageROI using greyscale and color images
I'm trying to set an image region of interest and add one image into another. One image is a mask (greyscale) and the other one is a color image. Right now, I'm doing
IplImage * _newImg = ...
0
votes
1answer
180 views
Imagej : How to save work in an editable way.With ROI measure and image associated togheter?
In ImageJ i need to save all the ROI Measure (in the ROI manager) associated with the image.
And have the possibility to open lately still editable (move the Line , move the point , save measure in ...
