【JAVA】OPENGL+TIFF格式图片,不同阈值旋转效果

2024-01-07 00:52

本文主要是介绍【JAVA】OPENGL+TIFF格式图片,不同阈值旋转效果,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

有些科学研究领域会用到一些TIFF格式图片,由于是多张图片相互渐变,看起来比较有意思:

import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.logging.*;/*** 可以自已定义日志打印格式,这样看起来比较方便些**/
class MyFormatter extends Formatter
{@Overridepublic String format(LogRecord arg0){//创建StringBuilder对象来存放后续需要打印的日志内容StringBuilder builder = new StringBuilder();//获取时间SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss.SSS");Date now = new Date();String dateStr = simpleDateFormat.format(now);builder.append("[");builder.append(dateStr);builder.append(" ");//拼接日志级别builder.append(arg0.getLevel()).append(" ");builder.append(arg0.getSourceClassName()).append(" ");//拼接方法名builder.append(arg0.getSourceMethodName()).append(" ");StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace();String line = stackTrace[8].toString();String lineNumber = line.substring(line.indexOf(":") + 1, line.length() - 1);//拼接方法名builder.append(lineNumber).append("] ");//拼接日志内容builder.append(arg0.getMessage());//日志换行builder.append("\r\n");return builder.toString();}
}public class MyLogger {static Logger logger;static  {logger = Logger.getLogger(MyLogger.class.getName());logger.setUseParentHandlers(false);//如果需要将日志文件写到文件系统中,需要创建一个FileHandler对象Handler consoleHandler = new ConsoleHandler();//创建日志格式文件:本次采用自定义的FormatterconsoleHandler.setFormatter(new MyFormatter());//将FileHandler对象添加到Logger对象中logger.addHandler(consoleHandler);}public static Logger getLogger() {return logger;}public static void main(String[] args) {MyLogger.logger.info("1");Logger logger = MyLogger.logger;logger.info("2");}
}

import com.sun.media.jai.codec.*;import com.sun.media.jai.codec.FileSeekableStream;
import com.sun.media.jai.codec.ImageDecoder;
import com.sun.media.jai.codec.ImageCodec;
import com.sun.media.jai.codec.TIFFEncodeParam;
import com.sun.media.jai.codec.TIFFDecodeParam;
import com.sun.media.jai.codec.JPEGEncodeParam;
import java.awt.image.RenderedImage;
import javax.media.jai.RenderedOp;
import javax.media.jai.JAI;import java.awt.*;
import java.awt.image.DataBuffer;
import java.awt.image.RenderedImage;
import java.awt.image.renderable.ParameterBlock;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import javax.swing.*;//本类继承自画布类,用作绘图的面板,因为Java不允许多继承,所以要用此类
class TIFBase extends Canvas
{ImageDecoder dec;TIFBase() throws IOException {this.TifRead();}public void TifRead() throws IOException{String currentDir = System.getProperty("user.dir");System.out.println("当前目录:" + currentDir);//FileSeekableStream fileSeekableStream = new FileSeekableStream("human_brain_from_itk_example.tif");FileSeekableStream fileSeekableStream = new FileSeekableStream("ex_Repo_hb9_eve1.tif");TIFFDecodeParam param0 = null;TIFFEncodeParam param = new TIFFEncodeParam();JPEGEncodeParam param1 = new JPEGEncodeParam();dec = ImageCodec.createImageDecoder("tiff", fileSeekableStream, param0);param.setCompression(TIFFEncodeParam.COMPRESSION_GROUP4);param.setLittleEndian(false); // Intel}public ImageDecoder getDec() {return dec;}public void setDec(ImageDecoder dec) {this.dec = dec;}public void TifDisplay(Graphics g) throws IOException, InterruptedException{int pagesCount = dec.getNumPages();System.out.println("This TIF has " + pagesCount + " image(s)");System.out.println();for (int i = 0; i < pagesCount; i++){System.out.println("image: " + i);RenderedImage page = dec.decodeAsRenderedImage(i);DataBuffer dataBuffer = page.getData().getDataBuffer();//System.out.println("size: " + dataBuffer.getSize());int height = page.getHeight();int width = page.getWidth();//g.drawString(page.getData().toString(), 0, 0);for (int j = 0; j < height; j++){for (int k = 0; k < width; k++){int red = dataBuffer.getElem((j * width + k) * 3);int green = dataBuffer.getElem((j * width + k) * 3 + 1);int blue = dataBuffer.getElem((j * width + k) * 3 + 2);g.setColor(new Color(red, green, blue));g.drawOval(j, k, 1, 1);}}}//Thread.sleep(10);}public void TifDisplay2(Graphics g) throws IOException, InterruptedException {int pagesCount = dec.getNumPages();System.out.println("This TIF has " + pagesCount + " image(s)");System.out.println();DataBuffer[] dataBuffers = new DataBuffer[pagesCount];int height = 0;int width = 0;for (int i = 0; i < pagesCount; i++){//System.out.println("image: " + i);RenderedImage page = dec.decodeAsRenderedImage(i);//System.out.println("height: " + page.getHeight() + ", width: " + page.getWidth());height = page.getHeight();width = page.getWidth();dataBuffers[i] = page.getData().getDataBuffer();}int statPage = 0;int endPage = pagesCount;int gap = endPage - statPage;int miniColor = 3;for (int i = 0; i < height; i++){for (int j = 0; j < width; j++){int redSumary = 0;int greenSumary = 0;int blueSumary = 0;int validRedColorFlag = 0;int validGreenColorFlag = 0;int validBlueColorFlag = 0;for (int k = statPage; k < endPage; k++){int red = dataBuffers[k].getElem((i * width + j) * 3);int green = dataBuffers[k].getElem((i * width + j) * 3 + 1);int blue = dataBuffers[k].getElem((i * width + j) * 3 + 2);if (red > miniColor){redSumary += red;validRedColorFlag++;}if (green > miniColor){greenSumary += green;validGreenColorFlag++;}if (blue > miniColor){blueSumary += blue;validBlueColorFlag++;}}redSumary = (validRedColorFlag == 0) ? 0 : (redSumary / validRedColorFlag);greenSumary = (validGreenColorFlag == 0) ? 0 : (greenSumary / validGreenColorFlag);blueSumary = (validBlueColorFlag == 0) ? 0 : (blueSumary / validBlueColorFlag);g.setColor(new Color(redSumary, greenSumary, blueSumary));g.drawOval(i, j, 1, 1);}}}// 把窗口拉宽些就可。public void paint(Graphics g){System.out.println("1");try {this.TifDisplay(g);//this.TifDisplay2(g);}catch (IOException | InterruptedException e){throw new RuntimeException(e);}}
}public class TIF extends JFrame
{public TIF(){super("画直线");this.setVisible(true);this.setBounds(200, 200, 600, 600);}public void Display() throws IOException{//创建对象TIFBase tifBase = new TIFBase();//创建实例this.getContentPane().add(tifBase);}public static void main(String[] args) throws IOException{TIF tif = new TIF();tif.Display();}
}
import com.sun.media.jai.codec.ImageDecoder;
import org.lwjgl.*;
import org.lwjgl.glfw.*;
import org.lwjgl.opengl.*;
import org.lwjgl.system.*;import java.awt.*;
import java.awt.image.DataBuffer;
import java.awt.image.RenderedImage;
import java.io.IOException;
import java.nio.*;
import java.util.Objects;
import java.util.logging.Logger;import static org.lwjgl.glfw.Callbacks.*;
import static org.lwjgl.glfw.GLFW.*;
import static org.lwjgl.opengl.GL32.*;
import static org.lwjgl.system.MemoryStack.*;
import static org.lwjgl.system.MemoryUtil.*;public class HelloWorld {// The window handleprivate long window;public static Logger logger = MyLogger.logger;private float angle;private ImageDecoder dec;private int threshold;HelloWorld()  {//创建对象try {TIFBase tifBase = new TIFBase();//创建实例dec = tifBase.getDec();} catch (IOException e) {throw new RuntimeException(e);}}public void run(){logger.info("Hello LWJGL " + Version.getVersion() + "!");init();loop();// Free the window callbacks and destroy the windowglfwFreeCallbacks(window);glfwDestroyWindow(window);// Terminate GLFW and free the error callbackglfwTerminate();Objects.requireNonNull(glfwSetErrorCallback(null)).free();}private void init() {logger.info("init");// Setup an error callback. The default implementation// will print the error message in System.err.GLFWErrorCallback.createPrint(System.err).set();angle = 5;threshold = 20;// Initialize GLFW. Most GLFW functions will not work before doing this.if ( !glfwInit() )throw new IllegalStateException("Unable to initialize GLFW");// Configure GLFWglfwDefaultWindowHints(); // optional, the current window hints are already the defaultglfwWindowHint(GLFW_VISIBLE, GLFW_FALSE); // the window will stay hidden after creationglfwWindowHint(GLFW_RESIZABLE, GLFW_TRUE); // the window will be resizable// Create the windowwindow = glfwCreateWindow(600, 600, "Hello World!", NULL, NULL);if ( window == NULL )throw new RuntimeException("Failed to create the GLFW window");// Setup a key callback. It will be called every time a key is pressed, repeated or released.glfwSetKeyCallback(window, (window, key, scancode, action, mods) -> {if ( key == GLFW_KEY_ESCAPE && action == GLFW_RELEASE )glfwSetWindowShouldClose(window, true); // We will detect this in the rendering loop});// Get the thread stack and push a new frametry ( MemoryStack stack = stackPush() ) {IntBuffer pWidth = stack.mallocInt(1); // int*IntBuffer pHeight = stack.mallocInt(1); // int*// Get the window size passed to glfwCreateWindowglfwGetWindowSize(window, pWidth, pHeight);// Get the resolution of the primary monitorGLFWVidMode vidmode = glfwGetVideoMode(glfwGetPrimaryMonitor());// Center the windowglfwSetWindowPos(window,(vidmode.width() - pWidth.get(0)) / 2,(vidmode.height() - pHeight.get(0)) / 2);} // the stack frame is popped automatically// Make the OpenGL context currentglfwMakeContextCurrent(window);// Enable v-syncglfwSwapInterval(1);// Make the window visibleglfwShowWindow(window);}/*** 绘制三角形*/public void DrawTriangles(){glTranslatef(-0.5f, -0.5f, -0.00f); //平移矩阵glRotatef(angle, 0.5f, 0.5f, 0.0f); //绕X,Y, Z轴直线旋转XX度glPointSize(1.0f);glBegin(GL_POINTS);try {int pagesCount = dec.getNumPages();//System.out.println("This TIF has " + pagesCount + " image(s)");//System.out.println();for (int i = 0; i < pagesCount; i++){//System.out.println("image: " + i);RenderedImage page = dec.decodeAsRenderedImage(i);DataBuffer dataBuffer = page.getData().getDataBuffer();//System.out.println("size: " + dataBuffer.getSize());int height = page.getHeight();int width = page.getWidth();//g.drawString(page.getData().toString(), 0, 0);for (int j = 0; j < height; j++){for (int k = 0; k < width; k++){int red = dataBuffer.getElem((j * width + k) * 3);int green = dataBuffer.getElem((j * width + k) * 3 + 1);int blue = dataBuffer.getElem((j * width + k) * 3 + 2);//g.setColor(new Color(red, green, blue));//System.out.println("red: " + red + ", green: " + green + ", blue: " + blue);if (red > threshold ){glColor3b((byte) red, (byte) 0, (byte) 0);glVertex3f(k / 200.0f,j / 200.0f,i / 200.0f);}if (green > threshold ){glColor3b((byte) 0, (byte) green, (byte) 0);glVertex3f(k / 200.0f,j / 200.0f,i / 200.0f);}if (blue > threshold ){glColor3b((byte) 0, (byte) 0, (byte) blue);glVertex3f(k / 200.0f,j / 200.0f,i / 200.0f);}//g.drawOval(j, k, 1, 1);}}}} catch (IOException e) {throw new RuntimeException(e);}System.out.println("threshold: " + threshold  + ", angle: " + angle);if (angle >= 350){angle = 0;threshold += 10;}angle+=10;glEnd();}public void DrawLines(){glBegin(GL_LINES);glVertex2i(0, 0);glVertex2i(0, 1);glEnd();}public void DrawQuads(){glBegin(GL_QUADS);//顶面glColor3f(0.0f, 1.0f, 0.0f);glVertex3f(1.0f, 1.0f, -1.0f);     //右上顶点glVertex3f(-1.0f, 1.0f, -1.0f);    //左上顶点glVertex3f(-1.0f, 1.0f, 1.0f);     //左下顶点glVertex3f(1.0f, 1.0f, 1.0f);      //右下顶点//底面glColor3f(1.0f, 0.5f, 0.0f);glVertex3f(1.0f, -1.0f, 1.0f);     //右上顶点glVertex3f(-1.0f, -1.0f, 1.0f);    //左上顶点glVertex3f(-1.0f, -1.0f, -1.0f);   //左下顶点glVertex3f(1.0f, -1.0f, -1.0f);    //右下顶点//前面glColor3f(1.0f, 0.0f, 0.0f);glVertex3f(1.0f, 1.0f, 1.0f);      //右上顶点glVertex3f(-1.0f, 1.0f, 1.0f);     //左上顶点glVertex3f(-1.0f, -1.0f, 1.0f);    //左下顶点glVertex3f(1.0f, -1.0f, 1.0f);     //右下顶点//后面glColor3f(1.0f, 1.0f, 0.0f);glVertex3f(1.0f, -1.0f, -1.0f);    //右上顶点glVertex3f(-1.0f, -1.0f, -1.0f);   //左上顶点glVertex3f(-1.0f, 1.0f, -1.0f);    //左下顶点glVertex3f(1.0f, 1.0f, -1.0f);     //右下顶点//左侧面glColor3f(0.0f, 0.0f, 1.0f);glVertex3f(-1.0f, 1.0f, 1.0f);     //右上顶点glVertex3f(-1.0f, 1.0f, -1.0f);    //左上顶点glVertex3f(-1.0f, -1.0f, -1.0f);   //左下顶点glVertex3f(-1.0f, -1.0f, 1.0f);     //右下顶点//右侧面glColor3f(1.0f, 0.0f, 1.0f);glVertex3f(1.0f, 1.0f, -1.0f);     //右上顶点glVertex3f(1.0f, 1.0f, 1.0f);      //左上顶点glVertex3f(1.0f, -1.0f, 1.0f);     //左下顶点glVertex3f(1.0f, -1.0f, -1.0f);    //右下顶点glEnd();}private void loop() {logger.info("loop");// This line is critical for LWJGL's interoperation with GLFW's// OpenGL context, or any context that is managed externally.// LWJGL detects the context that is current in the current thread,// creates the GLCapabilities instance and makes the OpenGLGL.createCapabilities();//DrawQuads();//-----------------------------------------//glLoadIdentity();   //重置当前的模型观察矩阵//————————————————//版权声明:本文为CSDN博主「贝勒里恩」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。//原文链接:https://blog.csdn.net/Mr_robot_strange/article/details/123682686while (true){//glClearColor(1.0f, 1.0f, 0.0f, 0.0f);glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); //清除屏幕和深度缓存//-----------------------------------------glLoadIdentity();   //重置当前的模型观察矩阵//DrawLines();DrawTriangles();glfwSwapBuffers(window);glfwPollEvents();}}public static void main(String[] args) {logger.info("main");new HelloWorld().run();}}

这上边的代码如果需要运行,需要依赖这些JAR包: 

运行效果如下:

TIFF格式图片文件不同阈值旋转_哔哩哔哩_bilibili

这篇关于【JAVA】OPENGL+TIFF格式图片,不同阈值旋转效果的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!


原文地址:
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.chinasem.cn/article/578214

相关文章

SpringBoot条件注解核心作用与使用场景详解

《SpringBoot条件注解核心作用与使用场景详解》SpringBoot的条件注解为开发者提供了强大的动态配置能力,理解其原理和适用场景是构建灵活、可扩展应用的关键,本文将系统梳理所有常用的条件注... 目录引言一、条件注解的核心机制二、SpringBoot内置条件注解详解1、@ConditionalOn

通过Spring层面进行事务回滚的实现

《通过Spring层面进行事务回滚的实现》本文主要介绍了通过Spring层面进行事务回滚的实现,包括声明式事务和编程式事务,具有一定的参考价值,感兴趣的可以了解一下... 目录声明式事务回滚:1. 基础注解配置2. 指定回滚异常类型3. ​不回滚特殊场景编程式事务回滚:1. ​使用 TransactionT

Spring LDAP目录服务的使用示例

《SpringLDAP目录服务的使用示例》本文主要介绍了SpringLDAP目录服务的使用示例... 目录引言一、Spring LDAP基础二、LdapTemplate详解三、LDAP对象映射四、基本LDAP操作4.1 查询操作4.2 添加操作4.3 修改操作4.4 删除操作五、认证与授权六、高级特性与最佳

Spring Shell 命令行实现交互式Shell应用开发

《SpringShell命令行实现交互式Shell应用开发》本文主要介绍了SpringShell命令行实现交互式Shell应用开发,能够帮助开发者快速构建功能丰富的命令行应用程序,具有一定的参考价... 目录引言一、Spring Shell概述二、创建命令类三、命令参数处理四、命令分组与帮助系统五、自定义S

SpringSecurity JWT基于令牌的无状态认证实现

《SpringSecurityJWT基于令牌的无状态认证实现》SpringSecurity中实现基于JWT的无状态认证是一种常见的做法,本文就来介绍一下SpringSecurityJWT基于令牌的无... 目录引言一、JWT基本原理与结构二、Spring Security JWT依赖配置三、JWT令牌生成与

Java中Date、LocalDate、LocalDateTime、LocalTime、时间戳之间的相互转换代码

《Java中Date、LocalDate、LocalDateTime、LocalTime、时间戳之间的相互转换代码》:本文主要介绍Java中日期时间转换的多种方法,包括将Date转换为LocalD... 目录一、Date转LocalDateTime二、Date转LocalDate三、LocalDateTim

如何配置Spring Boot中的Jackson序列化

《如何配置SpringBoot中的Jackson序列化》在开发基于SpringBoot的应用程序时,Jackson是默认的JSON序列化和反序列化工具,本文将详细介绍如何在SpringBoot中配置... 目录配置Spring Boot中的Jackson序列化1. 为什么需要自定义Jackson配置?2.

Java中使用Hutool进行AES加密解密的方法举例

《Java中使用Hutool进行AES加密解密的方法举例》AES是一种对称加密,所谓对称加密就是加密与解密使用的秘钥是一个,下面:本文主要介绍Java中使用Hutool进行AES加密解密的相关资料... 目录前言一、Hutool简介与引入1.1 Hutool简介1.2 引入Hutool二、AES加密解密基础

Spring Boot项目部署命令java -jar的各种参数及作用详解

《SpringBoot项目部署命令java-jar的各种参数及作用详解》:本文主要介绍SpringBoot项目部署命令java-jar的各种参数及作用的相关资料,包括设置内存大小、垃圾回收... 目录前言一、基础命令结构二、常见的 Java 命令参数1. 设置内存大小2. 配置垃圾回收器3. 配置线程栈大小

SpringBoot实现微信小程序支付功能

《SpringBoot实现微信小程序支付功能》小程序支付功能已成为众多应用的核心需求之一,本文主要介绍了SpringBoot实现微信小程序支付功能,文中通过示例代码介绍的非常详细,对大家的学习或者工作... 目录一、引言二、准备工作(一)微信支付商户平台配置(二)Spring Boot项目搭建(三)配置文件