フィルターのクリア

Image processing for a set of images but showing "Array indices must be positive integers or logical values" for another set of images?

3 ビュー (過去 30 日間)
I made an image processing script which can work for a set of images, but when I try to process another set of images with the same script, it shows errors saying "Array indices must be positive integers or logical values".
Could anyone help me with this please?
Array indices must be positive integers or logical values.
Error in training (line 16)
mean5=mean(double(A3(:)<1500))
This is my code:
%read images
A=imread('r30jun97.giant.04--1---2.tif');
%increase intensity
A1 = A*1000;
%mask
mask = A1>=2000;
A2 = uint16(mask).*A1;
%median filter to remove noise
meanFilter = ones(3)/9;
A3 = imfilter(A2,meanFilter);
%statistics
mean5=mean(double(A3(:)<1500));
sd5=sqrt(var(double(A3(:)<1500)));

採用された回答

Walter Roberson
Walter Roberson 2019 年 11 月 24 日
Guessing
mask = A3<1500;
mean5 = mean(A3(mask));
sd5 = std(A3(mask)) ;
However you should check whether you accidentally created a variable named mean
  4 件のコメント
Yuhong Jin
Yuhong Jin 2019 年 11 月 25 日
My intention is to calculate the mean and standard deviation in a specified range of A3. Should I define another variable or I can do it with mean?
Walter Roberson
Walter Roberson 2019 年 11 月 25 日
In that case the code I posted above would work. Or you might prefer to write it as
A3_5 = A3(A3<1500);
mean5 = mean(A3_5);
sd5 = std(A3_5);

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by