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

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

[Octave-bug-tracker] [bug #49941] image package: rgb2gray of a single im


From: Avinoam Kalma
Subject: [Octave-bug-tracker] [bug #49941] image package: rgb2gray of a single image produces a double image
Date: Tue, 27 Dec 2016 20:45:37 +0000 (UTC)
User-agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36

URL:
  <http://savannah.gnu.org/bugs/?49941>

                 Summary: image package: rgb2gray of a single image produces a
double image
                 Project: GNU Octave
            Submitted by: avinoam
            Submitted on: Tue 27 Dec 2016 08:45:36 PM GMT
                Category: Octave Forge Package
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Matlab Compatibility
                  Status: None
             Assigned to: carandraug
         Originator Name: Avinoam
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: other
        Operating System: Any

    _______________________________________________________

Details:

rgb2gray of a single image produces a double image, while in
MATLAB the result is single.

The fix is very simple: instead of


    case {"single", "double"}
      ## do nothing. All is good


There should be:


    case "single"
      im = single(im);
    case "double"
      ## do nothing. All is good


A BIST:


assert (isequal(class(rgb2gray(ones(3,3,3,'single'))),'single'))







    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?49941>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

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