On Tue, May 5, 2020 at 12:41 AM Antonius Ronald W.D <
address@hidden> wrote:
Hello it's me again. I wanna ask. What is the source code octave for Convert
image to grayscale and do the Seed Region Growing Method. I already install
the image Package. Thank you :)
--
Sent from: https://octave.1599824.n4.nabble.com/Octave-General-f1599825.html
You can change the colormap to grayscale with
x = linspace(0,1,100)';
colormap([x,x,x])
Octave and MATLAB are often compatible, so for the seed region growing method, I would suggest trying these solutions from the MATLAB community: