Applying an algorithm to a specific region of an image

Simplicity

I'm trying to apply an algorithm only to a specific region of an image. I tried imfreehand, but not able, at least for me, to do that using this function.

So, is there some way when running my code for the operations to be applied only to some specific region of an image in MATLAB?

Thanks.

nkjt

Using a mask defined by any of the "imroi" functions - imfreehand and imellipse included, you can use roifilt2 to filter just the roi using a given filter or function.

First, define the area:

imshow(I); %display your image
h = imfreehand; % now pick the region
BW = createmask(h); %makes BW mask

Then, use roifilt2 in one of the following ways -

Define a filter and apply it:

H = fspecial('unsharp');
I2 = roifilt2(H,I,BW);`

Apply a given function to the roi:

I2 = roifilt2(I, BW, 'histeq');

Apply a given function to the roi, specifying parameters:

fh = @(I)(histeq(I,5)); %define function
I2 = roifilt2(I, BW, fh); 

The last is equivalent to calling I2 = hist(I,5); but only works on the defined roi.

ETA:

If you want to call multiple functions on the roi, it may be easiest to define your own function, which takes an image input (and optionally, other parameters), applies the appropriate filters/functions to the image, and outputs a final image - you would then call "myfunc" in the same way as "histeq" above.

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

Change color of a specific region in eye image [Matlab]

분류에서Dev

search in specific region in matlab

분류에서Dev

Creating a Rails "localisation" that is not region or language specific?

분류에서Dev

Restrict android application to specific region through code

분류에서Dev

How to segment region of interest in a leaf image

분류에서Dev

Overlay the boundary of the segmented region on the original image Matlab

분류에서Dev

Issue on Applying CSS Specific Rules Only On Safari

분류에서Dev

Applying background-color to specific box

분류에서Dev

Keep specific sub-cells of a cell applying cellfun

분류에서Dev

Optimization of Image Reconstruction Algorithm using Genetic Algorithm in Matlab

분류에서Dev

Specific image extension selector in CSS or JQuery

분류에서Dev

Remove a specific image in a simple html dom scrape variable

분류에서Dev

How can I set an the image of an imageview for a specific file in Android?

분류에서Dev

Save image inside specific folder and store path in mysql to display later

분류에서Dev

Regarding a specific Object Detection in OpenCV using WebCam and comparing it with an input Image

분류에서Dev

Instafeed.js - how to filter out or exclude specific image or user?

분류에서Dev

I can't set background image to specific div

분류에서Dev

Geo region codes list

분류에서Dev

Adding HashMap to marker to display image doesn't return the correct image for that specific marker

분류에서Dev

Applying Java minor updates

분류에서Dev

Applying a diff patch

분류에서Dev

Applying Linux rt patch

분류에서Dev

Applying perspective with GLSL matrix

분류에서Dev

My CustomUsernamePasswordAuthenticationFilter is not applying

분류에서Dev

WPF Clear Region on a Drawing Context?

분류에서Dev

how to resize horizontally a screen region

분류에서Dev

PHPExcel - formatting a column as percent not applying

분류에서Dev

Applying custom theme to ActionBar in PreferenceFragment

분류에서Dev

Assistance applying poorly packaged patches?

Related 관련 기사

  1. 1

    Change color of a specific region in eye image [Matlab]

  2. 2

    search in specific region in matlab

  3. 3

    Creating a Rails "localisation" that is not region or language specific?

  4. 4

    Restrict android application to specific region through code

  5. 5

    How to segment region of interest in a leaf image

  6. 6

    Overlay the boundary of the segmented region on the original image Matlab

  7. 7

    Issue on Applying CSS Specific Rules Only On Safari

  8. 8

    Applying background-color to specific box

  9. 9

    Keep specific sub-cells of a cell applying cellfun

  10. 10

    Optimization of Image Reconstruction Algorithm using Genetic Algorithm in Matlab

  11. 11

    Specific image extension selector in CSS or JQuery

  12. 12

    Remove a specific image in a simple html dom scrape variable

  13. 13

    How can I set an the image of an imageview for a specific file in Android?

  14. 14

    Save image inside specific folder and store path in mysql to display later

  15. 15

    Regarding a specific Object Detection in OpenCV using WebCam and comparing it with an input Image

  16. 16

    Instafeed.js - how to filter out or exclude specific image or user?

  17. 17

    I can't set background image to specific div

  18. 18

    Geo region codes list

  19. 19

    Adding HashMap to marker to display image doesn't return the correct image for that specific marker

  20. 20

    Applying Java minor updates

  21. 21

    Applying a diff patch

  22. 22

    Applying Linux rt patch

  23. 23

    Applying perspective with GLSL matrix

  24. 24

    My CustomUsernamePasswordAuthenticationFilter is not applying

  25. 25

    WPF Clear Region on a Drawing Context?

  26. 26

    how to resize horizontally a screen region

  27. 27

    PHPExcel - formatting a column as percent not applying

  28. 28

    Applying custom theme to ActionBar in PreferenceFragment

  29. 29

    Assistance applying poorly packaged patches?

뜨겁다태그

보관