MATLAB: How to Remove the name from the image??

Image Processing Toolboxremove name

I want to remove the name which is on the left side please help me to solve this problem.I want to remove it completely.

Best Answer

imshow(grayImage);
axis on;
grayImage(row1:row2, col1:col2) = 0; % Figure out what rows and columns to erase.
imshow(grayImage);