This code demonstrates how to create a vertical gradient image with values between 0.0 and 5.0. Lines are written one by one from the bottom to the top.
using System;
using System.Runtime.Intrinsics;
{
public class GradientFloatImage
{
{
float[] lineBuffer = new float[shape[0]];
float stepLine = 5.0f / shape[1];
Console.WriteLine("Writing data slice by slice, line by line");
float valueInit = 0;
float valueToSet = valueInit;
for (ulong j = 0; j < shape[1]; ++j)
{
Array.Fill(lineBuffer, valueToSet);
valueToSet = valueInit + stepLine * j;
}
Console.WriteLine("Writing completed");
return image;
}
private static void displayImageContent(
ImageView image)
{
Console.WriteLine("Image content: ");
for (ulong j = 0; j < shape[1]; ++j)
{
for (ulong i = 0; i < shape[0]; ++i)
{
Console.Write(buffer[i + j * shape[0]] + " ");
}
Console.WriteLine();
}
Console.WriteLine();
}
public static void Main(string[] args)
{
Console.WriteLine(
"Shape of generated image: " + image.
Shape.
ToString());
displayImageContent(image);
Console.WriteLine("SUCCESS");
}
}
}
Stores information about a data type.
Definition DataType.cs:24
This factory is aimed at creating dataset views.
Definition ImageViewFactory.cs:21
static ImageView Allocate(VectorXu64 shape, DataType type, ImageProperties properties, MetadataNode metadata)
Creates a memory image with the given shape and type.
Definition ImageViewFactory.cs:86
Interface representing an N dimensional image.
Definition ImageView.cs:30
VectorXu64 Shape
The ImageView shape, the size of each of its dimensions.
Definition ImageView.cs:71
unsafe void ReadRegion(RegionXu64 region, byte[] dst)
Read a region of the image into a buffer.
Definition ImageView.cs:270
unsafe void WriteRegion(RegionXu64 region, byte[] src)
Write a input buffer into a given region of the image.
Definition ImageView.cs:387
A Region using dynamic vectors.
Definition RegionXu64.cs:14
uint ElementCount
The number of elements in this region.
Definition RegionXu64.cs:139
static RegionXu64 CreateFullRegion(VectorXu64 regionSize)
Utility factory that create the region of origin [0, 0, 0] and given size.
Definition RegionXu64.cs:173
A dynamically sized arithmetic vector.
Definition VectorXu64.cs:14
Definition CreateDataFrame.cs:6
Definition AccessCapabilities.cs:11
DataTypeId
A collection of built-in data types.
Definition DataTypeId.cs:15