RunMat
GitHub

rgb2hsv — Convert RGB image or colormap values to HSV using MATLAB-compatible channel mapping.

rgb2hsv(RGB) converts MxNx3 image data or an Nx3 colormap from RGB to HSV. It follows MATLAB-compatible conventions for hue, saturation, and value channel construction across supported numeric input classes.

Syntax

HSV = rgb2hsv(RGB)

Inputs

NameTypeRequiredDefaultDescription
RGBAnyYesRGB image or Nx3 RGB colormap values.

Returns

NameTypeDescription
HSVNumericArrayHSV image or colormap converted from RGB input.

Errors

IdentifierWhenMessage
RunMat:rgb2hsv:TooManyInputsMore than one input argument is supplied.rgb2hsv: too many input arguments
RunMat:rgb2hsv:InvalidInputInput cannot be interpreted as an MxNx3 RGB image or Nx3 RGB colormap.rgb2hsv: invalid input
RunMat:rgb2hsv:InternalHSV output tensor construction fails internally.rgb2hsv: internal conversion failure

How rgb2hsv works

  • Accepts MxNx3 truecolor images and Nx3 colormaps.
  • Integer RGB inputs are scaled into [0,1] before conversion.

Example

RGB To HSV

HSV = rgb2hsv(RGB);

Expected output:

% HSV has the same shape as RGB

Using rgb2hsv with coding agents

Open a RunMat example with live inputs, then ask the agent to explain how rgb2hsv changes the result.

Run a small rgb2hsv example, explain the result, then change one input and compare the output.

Open-source implementation

Unlike proprietary runtimes, every RunMat function is open-source. Read exactly how rgb2hsv is executed, line by line, in Rust.

About RunMat

RunMat is an open-source runtime that executes MATLAB-syntax code blazing on any GPU. It is licensed under the Apache 2.0 license.

  • RunMat automatically optimizes your math for GPU execution on Apple, Nvidia, and AMD hardware. No code changes needed. Simulations that took hours now take minutes.
  • Start running code in seconds. RunMat runs in the browser, on the desktop, or from the CLI. No license server, no IT ticket.

Getting started · Benchmarks · Pricing

Download RunMat

Download RunMat for full performance, or use RunMat in your browser for zero setup.