octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #56141] [octave forge] (image) bwmorph option


From: Nicholas Jankowski
Subject: [Octave-bug-tracker] [bug #56141] [octave forge] (image) bwmorph option 'endpoints' not implemented
Date: Sat, 20 Apr 2019 20:40:53 -0400 (EDT)
User-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299

Follow-up Comment #7, bug #56141 (project octave):

going to capture a few more here:


>> A = [0 0 0 0 0; 0 1 1 1 0; 0 1 1 1 0; 0 1 1 1 0; 0 0 0 0 0]
A =
     0     0     0     0     0
     0     1     1     1     0
     0     1     1     1     0
     0     1     1     1     0
     0     0     0     0     0
>> B = bwmorph(A,'endpoints')
B =
  5×5 logical array
   0   0   0   0   0
   0   1   1   1   0
   0   1   0   1   0
   0   1   1   1   0
   0   0   0   0   0
>> B = bwmorph(B,'endpoints')
B =
  5×5 logical array
   0   0   0   0   0
   0   0   0   0   0
   0   0   0   0   0
   0   0   0   0   0
   0   0   0   0   0
>> A = [0 0 0 0 0; 0 0 1 0 0; 0 1 1 1 0; 0 0 1 0 0; 0 0 0 0 0]
A =
     0     0     0     0     0
     0     0     1     0     0
     0     1     1     1     0
     0     0     1     0     0
     0     0     0     0     0
>> B = bwmorph(A,'endpoints')
B =
  5×5 logical array
   0   0   0   0   0
   0   0   1   0   0
   0   1   0   1   0
   0   0   1   0   0
   0   0   0   0   0
>> B = bwmorph(B,'endpoints')
B =
  5×5 logical array
   0   0   0   0   0
   0   0   0   0   0
   0   0   0   0   0
   0   0   0   0   0
   0   0   0   0   0
>> A = [0 0 0 0 0; 0 1 0 0 0; 0 0 1 0 0; 0 0 0 1 0; 0 0 0 0 0]
A =
     0     0     0     0     0
     0     1     0     0     0
     0     0     1     0     0
     0     0     0     1     0
     0     0     0     0     0
>> B = bwmorph(A,'endpoints')
B =
  5×5 logical array
   0   0   0   0   0
   0   1   0   0   0
   0   0   0   0   0
   0   0   0   1   0
   0   0   0   0   0
>> B = bwmorph(B,'endpoints')
B =
  5×5 logical array
   0   0   0   0   0
   0   1   0   0   0
   0   0   0   0   0
   0   0   0   1   0
   0   0   0   0   0



    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?56141>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]