How I can change the color of a small part of a white border around an image?

조회 수: 12 (최근 30일)
Hi everyone!
I have a stimulus which is a mosaic of image (a matrix of 4*7). I created a white border around the image, But I want to change the color of border into black only in the middle bottom of the border. This postion is where the participant seat in front of the image projecting on the wall, so this part of the border must be in black to hide the shaddow of the participant.
I would be thankful if any body could let me know if this can basically be done? and how?
An example of the stimulus is attached for better clarification.
Thanks!
  댓글 수: 16
KALYAN ACHARJYA
KALYAN ACHARJYA 2021년 2월 22일
편집: KALYAN ACHARJYA 2021년 2월 22일
@Parishad Bromandnia From the input attached image, it can be manipulated directly? If I read the attached input image and make a black color in the particular area, is there an issue?
Parishad Bromandnia
Parishad Bromandnia 2021년 2월 22일
@KALYAN ACHARJYA, Exactly, I meant that. I just do not know how to make that particular area black. Please find the original stimulus attached, You can directly read it in MATLAB: Please let me know of potential solution.

댓글을 달려면 로그인하십시오.

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2021년 2월 22일
rgbImage=imread('Trial_with_margin.jpg');
grayImage=rgb2gray(rgbImage);
[r,~]=find(grayImage==0);
max_row=max(r);
mid_col=round(size(rgbImage,2)/2);
% I have directly set here, it can be generalized
th=300; % Find the coloumns of the cat image
rgbImage(max_row:end,mid_col-th:mid_col+th,1:3)=0;
imshow(rgbImage);
  댓글 수: 4
KALYAN ACHARJYA
KALYAN ACHARJYA 2021년 2월 22일
편집: KALYAN ACHARJYA 2021년 2월 22일
OMG, @Parishad Bromandnia you wrote such a long text, I was afraid to read it completely. I thought it could be some big issues. @Rik also questioned you on several points. Whatever it is, glad to know that the problem has been resolved.
Cheers!
Kalyan :)
Parishad Bromandnia
Parishad Bromandnia 2021년 2월 22일
@KALYAN ACHARJYA, Right, it was my first question and maybe I could not be clear enough :)
Anyway the code is exactly what I needed.
Thanks again :)
All the best,

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by