Questions tagged [roi]

Region Of Interest, a region of an image on which algorithms are executed on.

Region Of Interest (ROI) is a selected subset of a data set identified for a particular purpose and is commonly used in many application areas. The data set could be any of the following:

  • 1D data set: a time or frequency interval on a waveform
  • 2D data set: the boundaries of an object on an image
  • 3D data set: the contours or surfaces outlining an object (a.k.a. the Volume of Interest (VOI)) in a volume
  • 4D data set: the outline of an object at or during a particular time interval in a time-volume

Tag Usage:

An ROI on an image can be defined in different formats, like a , a or a set of . The tag is commonly used in question related to or . An ROI can be defined to:

  • Restrict the region of the data set that an algorithm is applied to and avoid unnecessary calculations. (e.g., in an )
  • Identify/Annotate a part of data set. (e.g., locate moving objects in )
  • Extract additional information from the data set. (e.g., measure size of a tumor on a medical image)

An Example:

ROI locates the boundaries of a registration plate (it's Persian), this area will be used for ANPR:

enter image description here

Additional Reading:

Region of Interest on Wikipedia

441 questions
0
votes
0 answers

Extracting measurements from a finger via ROI and image processing MATLAB

I am trying to do a number of things via MATLAB but I am getting a bit lost with what techniques to use. My ultimate goal is to extract various measurements from a users fingerprint presentation, e.g. how far the finger over/undershoots, the…
0
votes
0 answers

OpenCV Region of Interest (ROI)

i am trying to make a code such that when roi is created when a face or faces is/are detected through a webcam, and then an image of each cropped area size face is saved to a filepath with the names being 01.jpg, 02.jpg, etc. Can anyone help…
kingpin
  • 85
  • 1
  • 14
0
votes
1 answer

How to select a threshold value automaticallly in 'im2bw' for segmentation in matlab

I have to segment a region from a monochrome image. After the application of the command 'graythreshold' in my code, the command 'im2bw' requires a threshold value to expand the binary image containing only the ROI, so that I can take the…
mel
  • 9
  • 3
0
votes
2 answers

OpenCV: Create a transparent mask?

What I'm currently doing is loading an image of a face into a Mat, setting the centre point X and Y coordinates of each eye, creating a circle around each of the eyes, setting the ROI to the circles around the eyes (using a Rect and setting a mask),…
LKB
  • 1,020
  • 5
  • 22
  • 46
0
votes
1 answer

Assertion failed ROI opencv

I use visual studio 2012 with opencv 3.0. I already checked several post about this issue but still I get assertion failed error -215 when I run this code: IplImage * imageOriginal = cvLoadImage("road1.jpg"); int width = 0, height = 0; width =…
Elod
  • 499
  • 9
  • 25
0
votes
1 answer

Matlab: Extracting a ROI with center coordinates

I have a mammographic image of size 1024 x 1024, and I have the center coordinates of the anomaly (338.314) and the radius (56) in pixels of the circle containing the anomaly. I desire to extract a region of interest of size 128 * 128 including the…
0
votes
1 answer

Rectangular volume of interest structural MRI for SPM/Matlab Image processing

I am using matlab/spm to create a volume of interest in the brain (analyze format). I know the following... shape of volume (rectangle) size of volume center voxel I have used the marsbar toolbox to create a volume of interest given the above…
0
votes
2 answers

Drawing a resizeable box on an image

I'm working on a gui and using GUIDE. It loads and image and has the user draw an ROI around a point (the particle ROI). I would then like to have two sliders for creating a second ROI (the Scan ROI) where the user can use sliders to set the width…
0
votes
1 answer

How to make camera focus only on face in OpenCV

I want camera to focus only on object or face using haar-classifiers (ex: face classifier or smile classifiers) remaining part of the image must be hidden or kind of blurred. I created haar classifiers for smile detection. I want to focus only on…
PK4Android
  • 121
  • 1
  • 9
0
votes
0 answers

Qt OpenCV update region in QImage

i'm starting integrating Opencv in a qt application, so i have a the follwing program structure: QGraphicsView | |->QGraphicsPixmapItem (where the captured Image will be) | | |->QGraphicsRectItem…
Rui Sebastião
  • 855
  • 1
  • 18
  • 36
0
votes
0 answers

Preserve User ROIs after Analyze Particles Add to Manager

I'm working primarily in the macro language. For my macro, I am asking a user to select a few elements from an image. One is an ellipse selection and the other polygonal. I have these two ROIs in the ROI Manager and I would like to keep them. When…
bhive01
  • 251
  • 1
  • 12
0
votes
2 answers

Volusion Java Script - How to Install ROI Tracking Conversion Code

I have installed the tracking code to the site but I need some assistance with adding the nesseasry code for getting the details of the proccessed order the provided documentation is as follows Where Order-Specific Information is…
User Envy
  • 53
  • 1
  • 10
0
votes
1 answer

painting DICOM ROI

I'm at a point where I need to mix the DICOM Region of Interest (ROI) Relative Electron Density (RED) with the information from DICOM CT's where some of the ROIs should override the CT info. [I'm working in C# by the way.] My question is that I…
0
votes
1 answer

How to realize ROI (region of interest ) in EDSDK?

I need to take picture with EDSDK and save to host only ROI of Image. Do I need to use EdsGetImage? How can I realize this? I don't understand how to use EdsGetImage.
0
votes
1 answer

Using roifilt2 on an image in Matlab

I am trying to sum up all the values in a 400 x 640 image that are within a masked region using the roifilt2 function. I created a mask using roipoly and it is also stored as a 400 x 640 matrix with 0's in the cells I am uninterested in and 1's in…
James Baker
  • 331
  • 3
  • 8
  • 26