public LeadPoint PointFromImage(
RasterViewPerspective viewPerspective,
LeadPoint pt
)
Public Function PointFromImage( _
ByVal viewPerspective As RasterViewPerspective, _
ByVal pt As LeadPoint _
) As LeadPoint
- (LeadPoint)pointFromImage:(LTRasterViewPerspective)viewPerspective
sourcePoint:(LeadPoint)src
public LeadPoint pointFromImage(
RasterViewPerspective viewPerspective,
LeadPoint pt
)
public:
LeadPoint PointFromImage(
RasterViewPerspective viewPerspective,
LeadPoint pt
)
viewPerspective
Destination view perspective to which the point should be translated.
pt
The point to translate.
The translated point.
For more information, refer to Accounting for View Perspective.
For more information, refer to Changing Image Coordinates.
This example finds out where the origin of the image should be. Then it converts a known point to bitmap coordinates.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing;
using Leadtools.ImageProcessing.Core;
using Leadtools.ImageProcessing.Color;
using Leadtools.Dicom;
using Leadtools.Drawing;
using Leadtools.Controls;
using Leadtools.Svg;
public void PointFromImageExample()
{
RasterCodecs codecs = new RasterCodecs();
// Load an image that has BottomLeft ViewPerspective
RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ULAY1.BMP"));
LeadPoint ImagePoint = new LeadPoint(0, 0);
ImagePoint = image.PointFromImage(RasterViewPerspective.TopLeft, ImagePoint);
Console.WriteLine(string.Format("{0},{1}", ImagePoint.X, ImagePoint.Y));
ImagePoint.X = 0;
ImagePoint.Y = 0;
ImagePoint = image.PointToImage(RasterViewPerspective.TopLeft, ImagePoint);
Console.WriteLine(string.Format("{0},{1}", ImagePoint.X, ImagePoint.Y));
image.Dispose();
codecs.Dispose();
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\LEADTOOLS21\Resources\Images";
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing
Imports Leadtools.ImageProcessing.Core
Imports Leadtools.ImageProcessing.Color
Imports Leadtools.Controls
Imports Leadtools.Dicom
Imports Leadtools.Drawing
Imports Leadtools.Svg
Public Sub PointFromImageExample()
Dim codecs As RasterCodecs = New RasterCodecs()
' Load an image that has BottomLeft ViewPerspective
Dim image As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ULAY1.BMP"))
Dim ImagePoint As LeadPoint = New LeadPoint(0, 0)
ImagePoint = image.PointFromImage(RasterViewPerspective.TopLeft, ImagePoint)
Console.WriteLine(String.Format("{0},{1}", ImagePoint.X, ImagePoint.Y))
ImagePoint.X = 0
ImagePoint.Y = 0
ImagePoint = image.PointToImage(RasterViewPerspective.TopLeft, ImagePoint)
Console.WriteLine(String.Format("{0},{1}", ImagePoint.X, ImagePoint.Y))
image.Dispose()
codecs.Dispose()
End Sub
Public NotInheritable Class LEAD_VARS
Public Const ImagesDir As String = "C:\LEADTOOLS21\Resources\Images"
End Class
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document