フィルターのクリア

I have an Image shown below as 'a' ,after extracting co-ordinates of certain pixels , based on some specified criteria. when I am changing the colour of those coordinates in oriinal image I am getting different type of image.? ,

1 回表示 (過去 30 日間)
  1 件のコメント
Guillaume
Guillaume 2017 年 11 月 22 日
You have not provided enough information for us to help. We don't know:
  • how you are importing the image into matlab
  • what class you store it as
  • how you are changing the colour of those coordinates
  • what you mean by different type of image

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2017 年 11 月 22 日
Looks like a classic beginner mistake of thinking (x,y) is the same as (row, column). Matrices take indexes as (row, column) NOT (x,y), which you probably used. (x,y) is really (column, row) which is not how arrays index their values. Instead try (y,x):
m(y, x) = .....

その他の回答 (1 件)

Mohammad Bhat
Mohammad Bhat 2017 年 11 月 22 日
Sir, thank you

Community Treasure Hunt

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

Start Hunting!

Translated by