Filter löschen
Filter löschen

how to convert ROI into zero values.

1 Ansicht (letzte 30 Tage)
Piyum Rangana
Piyum Rangana am 21 Feb. 2017
Beantwortet: Image Analyst am 1 Apr. 2017
I have colored image with a damaged region(ROI). I want to convert the pixel values of damaged area into zero values. AN example output needs to be like the attached one below What is the process should i follow ?
  1 Kommentar
Peter O
Peter O am 21 Feb. 2017
How is your ROI defined and what is the structure of your image data? If the image is a grayscale matrix, it should be as straightforward as identifying the indices of the ROI, then
A(idces) = 0
If your ROI is a rectangle of the form [x0 y0 w h] you could use the meshgrid command to get the coordinates and, optionally, convert them to the single-index form I used above. (You could also use A(X,Y) = 0)

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Image Analyst
Image Analyst am 1 Apr. 2017
Use regionfill().

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by