概述
%unknown input parameters are: rice_h, rice_den
clc
close all
clear all
global function_in
rice = imread('rice30.tif', 'tiff');
sar_16bit=imread('rs0914-hh.tif','tiff');
[row col]=size(sar_16bit);
rice_h=uint16(zeros(row,col));
rice_den=uint16(zeros(row,col));
err=uint16(zeros(row,col));
bounds=[100,120;250,350]; % Set lower/heigher bounds of [height, density]
X = zeros(2,1);
FVAL = 0;
function_in = zeros(1);
%you need to change the i, j following the size of your image.
for i = 1:row % 1586
for j = 1:col % 2430
fprintf(1,'i = %d, j = %dn',i,j);
% save line.dat i -ascii
if rice(i,j) <= 0
rice_h(i,j) = 0;
rice_den(i,j) =
最后
以上就是调皮小土豆为你收集整理的matlab双循环语句,双for循环的语句如何修改为matlab语句?的全部内容,希望文章能够帮你解决matlab双循环语句,双for循环的语句如何修改为matlab语句?所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复