Translates a point (x,y) from this RasterImage view perspective to the specified view perspective.
public LeadPoint PointFromImage(RasterViewPerspective viewPerspective,LeadPoint pt)
Public Function PointFromImage( _ByVal viewPerspective As Leadtools.RasterViewPerspective, _ByVal pt As Leadtools.LeadPoint _) As Leadtools.LeadPoint
public Leadtools.LeadPoint PointFromImage(Leadtools.RasterViewPerspective viewPerspective,Leadtools.LeadPoint pt)
- (LeadPoint)pointFromImage:(LTRasterViewPerspective)viewPerspectivesourcePoint:(LeadPoint)src
public LeadPoint pointFromImage(RasterViewPerspective viewPerspective,LeadPoint pt)
function Leadtools.RasterImage.PointFromImage(viewPerspective ,pt)
public:Leadtools.LeadPoint PointFromImage(Leadtools.RasterViewPerspective viewPerspective,Leadtools.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 LeadtoolsExamples.Common;using Leadtools.Svg;public void PointFromImageExample(){RasterCodecs codecs = new RasterCodecs();// Load an image that has BottomLeft ViewPerspectiveRasterImage image = codecs.Load(Path.Combine(ImagesPath.Path, "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();}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessingImports Leadtools.ImageProcessing.CoreImports Leadtools.ImageProcessing.ColorImports Leadtools.ControlsImports Leadtools.DicomImports Leadtools.DrawingImports Leadtools.SvgPublic Sub PointFromImageExample()Dim codecs As RasterCodecs = New RasterCodecs()' Load an image that has BottomLeft ViewPerspectiveDim 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 = 0ImagePoint.Y = 0ImagePoint = image.PointToImage(RasterViewPerspective.TopLeft, ImagePoint)Console.WriteLine(String.Format("{0},{1}", ImagePoint.X, ImagePoint.Y))image.Dispose()codecs.Dispose()End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
using Leadtools;using Leadtools.Codecs;using Leadtools.Dicom;using Leadtools.ImageProcessing;using Leadtools.ImageProcessing.Core;using Leadtools.ImageProcessing.Color;using Leadtools.Examples;using Leadtools.Windows.Media;public void PointFromImageExample(RasterImage image){// image should be an image that has BottomLeft ViewPerspective (ulay1.bmp)LeadPoint ImagePoint = new LeadPoint(0, 0);ImagePoint = image.PointFromImage(RasterViewPerspective.TopLeft, ImagePoint);Debug.WriteLine(string.Format("{0},{1}", ImagePoint.X, ImagePoint.Y));ImagePoint.X = 0;ImagePoint.Y = 0;ImagePoint = image.PointToImage(RasterViewPerspective.TopLeft, ImagePoint);Debug.WriteLine(string.Format("{0},{1}", ImagePoint.X, ImagePoint.Y));image.Dispose();}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.DicomImports Leadtools.ImageProcessingImports Leadtools.ImageProcessing.CoreImports Leadtools.ImageProcessing.ColorImports Leadtools.Windows.MediaPublic Sub PointFromImageExample(ByVal image As RasterImage)' image should be an image that has BottomLeft ViewPerspective (ulay1.bmp)Dim ImagePoint As LeadPoint = New LeadPoint(0, 0)ImagePoint = image.PointFromImage(RasterViewPerspective.TopLeft, ImagePoint)Debug.WriteLine(String.Format("{0},{1}", ImagePoint.X, ImagePoint.Y))ImagePoint.X = 0ImagePoint.Y = 0ImagePoint = image.PointToImage(RasterViewPerspective.TopLeft, ImagePoint)Debug.WriteLine(String.Format("{0},{1}", ImagePoint.X, ImagePoint.Y))image.Dispose()End Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
