利用halcon读取tiff图像,并且获取图像指针

// read_tif.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

using namespace HalconCpp;
using namespace cv;
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
	string path = "E:\\CurrentIteam\\BlueShoese\\new_project\\CSV\\白色右脚.tiff";
	Hlong width,height;
	HObject ho_image;
	ReadImage(&ho_image, path.c_str());
	ConvertImageType(ho_image, &ho_image, "real");    //转化为float的数据
	HImage hImg(ho_image);
	HString ho_type;
	void *ptr_img = hImg.GetImagePointer1(&ho_type, &width, &height);        //获取float的指针

	return 0;
}

 

你可能感兴趣的:(halcon)