All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.cosycode.bdmp.BdmpRecCngInfo Maven / Gradle / Ivy

Go to download

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; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy