Tagged Questions

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

learn more… | top users | synonyms

21
votes
8answers
585 views

What’s the ROI of Continuous Integration?

Currently, our organization does not practice Continuous Integration. In order for us to get an CI server up and running, I will need to produce a document demonstrating the return on the ...
14
votes
7answers
609 views

How do you estimate a ROI for clearing technical debt?

I'm currently working with a fairly old product that's been saddled with a lot of technical debt from poor programmers and poor development practices in the past. We are starting to get better and ...
4
votes
4answers
101 views

Proving the ROI of a technology?

How does one prove the ROI of a technology to their manager? The closest thing I have found to a document on how to do this is: http://www.agilejournal.com/pdf/Finding-ROI-in-Build-Automation.pdf ...
4
votes
8answers
530 views

Which software development practices provide the highest ROI?

The software development team in my organization (that develops API's - middleware) is gearing to adopt atleast one best practice at a time. The following are on the list: Unit Testing (in its real ...
3
votes
4answers
161 views

What's the ROI of using a build tool like ant or nant?

To me this sounds like a really stupid question. Why would you not use a build tool? However, I need to explain my co-worker why he should be using a build tool of some sort. He's getting ...
3
votes
9answers
523 views

Quality vs. ROI - When is Good Enough, good enough?

UPDATED: I'm asking this from a development perspective, however to illustrate, a canoical non-development example that comes to mind is that if it costs, say, $10,000 to keep a uptime rate of 99%, ...
2
votes
3answers
151 views

how to extract the objects inside the region of interest in matlab

I am interested in extracting the objects inside the region. For example, Fig1 showed the intensity profile of my laser profile. According to the laser intensity, I divide the profile into 2 ...
2
votes
1answer
354 views

Number of non-zero pixels in a cv::RotatedRect

as the title says i'm trying to find the number of non-zero pixels in a certain area of a cv::Mat, namely within a RotatedRect. For a regular Rect one could simply use countNonZeroPixels on a ROI. ...
2
votes
1answer
842 views

Batch Processing Image Files in MATLAB

I'm a beginner in MATLAB and image processing. I encountered a problem while trying to use the batch processing and hope someone would be able to enlighten me. Thanks. Following the example from ...
2
votes
4answers
407 views

Do you concentrate more on unit, integration or acceptance tests?

Most gigs I end up at either have little or no unit tests. Typically what are described as the unit tests are actually integration tests and will be rarely run from the developers machine. I usually ...
1
vote
1answer
41 views

How can one easily detect whether 2 ROIs intersects in OpenCv?

I am trying to detect whether 2 Regions of Interest (CvRects) are intersecting one another in OpenCV. I can obviously manually type several (or rather a lot of) conditions to be checked but that ...
1
vote
1answer
86 views

cvSetImageROI in a loop

I'm just beginning to learn OpenCV and I would like to ask about how can I possibly use cvSetImageROI in a loop. The problem is that, I would like to divide an image into 9 equal regions and check ...
1
vote
1answer
208 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
1answer
354 views

OpenCV extract area of an image from a vector of squares

I have an image that contains a square, and I need to extract the area contained in that square. After applying the squares.c script (available in the samples of every OpenCV distribution) I obtain a ...
1
vote
1answer
134 views

Compute the optical density of a subimage in Matlab

I have a RGB image. I want to compute the Optical Density of a region of that image. I have converted the Image to grayscale and I know the formula for Optical Density is log(1/illumination). My ...
1
vote
1answer
1k views

Using ROI in MATLAB

I have a final project in MATLAB and I need help. I build a GUI and display an image using imshow function, now i want to select area from the image and get the pixls of the Selected area. i know ...
1
vote
3answers
155 views

Unit Testing during maintenance phase

Our project is currently under maintenance. We have never had unit testing for this project. We were planning on writing unit test for the delta's rather than writing unit test for the entire ...
1
vote
4answers
413 views

Cost of system integration?

On the software development projects that you have worked on, what has been the approximate cost (expressed as a percentage of total system cost) of system integration? System integration includes ...
1
vote
2answers
916 views

iPhone Objective C: UIImage - Region of Interest

Is there any way to get the min rectangle area which contains all the non-transparent part of an UIImage? Reading pixel by pixel to check where alpha == 0 ...isn't a good way I believe. Any better ...
0
votes
1answer
11 views

OpenCV : set ROI with angle?

I'd like to use a ROI to copy a found polygon in an image, into a new image. I'd like this polygon to fit exactly in the new image. So far I used ROI, but I noticed that the angle is not taken into ...
0
votes
0answers
8 views

GLImageProcessing ROI (Region of Interest)

I am currently trying to blur a part of an image. I use apple's example code here The example code itself can blur whole image and draw it to the EAGLView, what I want to do is blur only part of the ...
0
votes
1answer
207 views

Is Picture-in-Picture possible using OpenCV?

I would like to add a smaller image on top of a larger image (eventually for PiP on a video feed). I can do it by iterating through the relevant data property in the large image and add the pixels ...
0
votes
1answer
138 views

Image Filter on ROI with Java2D

i want apply some filters [image filter] on Region Of Interest that user selected. i need API for getting pixels of this area [polygon or freehand also Rectangle] and apply filter.any Suggestion ...
0
votes
1answer
165 views

What's the ROI of Sub-Repositories?

I know that sub-repositories save you an your team time, but what is the ROI on them? http://mercurial.selenic.com/wiki/subrepos
0
votes
3answers
57 views

identifying code improvements

We've just gone through a pretty major system rewrite and I have been asked to find and identify areas of the code that have been improved. as a way to justify to the customer that the effort we've ...