com.github.cosycode.bdmp.BdmpRecCngInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bit-data-map Show documentation
Show all versions of bit-data-map Show documentation
a way to transfer data in the form of dot-matrix information in pictures(比特数据图片, 一种以图片信息的形式传递数据的方式)
The newest version!
package com.github.cosycode.bdmp;
import lombok.Data;
import java.awt.*;
/**
* Description : 像素图片识别出的配置信息
*
* created in 2020/11/18
*
* @author CPF
* @since 1.0
*/
@Data
public class BdmpRecCngInfo {
/**
* 左上方标记点
*/
private Point leftTopPoint;
/**
* 右上方标记点
*/
private Point rightTopPoint;
/**
* 左下方标记点
*/
private Point leftBottomPoint;
/**
* 左下方标记点
*/
private Point rightBottomPoint;
private int[] xArr;
private int[] yArr;
}