- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中us.ihmc.codecs.generated.YUVPicture.scale()
方法的一些代码示例,展示了YUVPicture.scale()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YUVPicture.scale()
方法的具体详情如下:
包路径:us.ihmc.codecs.generated.YUVPicture
类名称:YUVPicture
方法名:scale
暂无
代码示例来源:origin: us.ihmc/IHMCVideoCodecs
public static void main(String[] args) throws IOException
{
JPEGDecoder decoder = new JPEGDecoder();
YUVPicture jpeg = decoder.readJPEG(JPEGExample.class.getClassLoader().getResource("testImage.jpg"));
jpeg.scale(jpeg.getWidth() * 2, jpeg.getHeight() * 2, FilterModeEnum.kFilterBilinear);
JPEGEncoder encoder = new JPEGEncoder();
int maxSize = (int) encoder.maxSize(jpeg);
ByteBuffer buffer = ByteBuffer.allocateDirect((int) maxSize);
int size = encoder.encode(jpeg, buffer, maxSize, 90);
buffer.limit(size);
RandomAccessFile file = new RandomAccessFile("test.jpg", "rw");
FileChannel channel = file.getChannel();
channel.write(buffer);
file.close();
}
}
代码示例来源:origin: us.ihmc/ihmc-video-codecs
public static void main(String[] args) throws IOException
{
JPEGDecoder decoder = new JPEGDecoder();
YUVPicture jpeg = decoder.readJPEG(JPEGExample.class.getClassLoader().getResource("testImage.jpg"));
jpeg.scale(jpeg.getWidth() * 2, jpeg.getHeight() * 2, FilterModeEnum.kFilterBilinear);
JPEGEncoder encoder = new JPEGEncoder();
int maxSize = (int) encoder.maxSize(jpeg);
ByteBuffer buffer = ByteBuffer.allocateDirect((int) maxSize);
int size = encoder.encode(jpeg, buffer, maxSize, 90);
buffer.limit(size);
RandomAccessFile file = new RandomAccessFile("test.jpg", "rw");
FileChannel channel = file.getChannel();
channel.write(buffer);
file.close();
}
}
代码示例来源:origin: us.ihmc/simulation-construction-set-tools
private void doTheNextFrame(YUVPicture picture)
{
int width = jPanel.getWidth();
int height = jPanel.getHeight();
if (width < 1 || height < 1)
return;
picture.scale(width, height, FilterModeEnum.kFilterBilinear);
bufferedImage = converter.toBufferedImage(picture, bufferedImage);
SwingUtilities.invokeLater(new Runnable()
{
@Override
public void run()
{
imageIcon = new ImageIcon(bufferedImage);
jLabel.setIcon(imageIcon);
}
});
picture.delete();
}
代码示例来源:origin: us.ihmc/RobotDataCommunication
int newWidth = ((int) (scaleWidth * (double) img.getWidth()) >> 1) << 1;
int newHeight = ((int) (scaleHeight * (double) img.getHeight()) >> 1) << 1;
img.scale(newWidth, newHeight, FilterModeEnum.kFilterBilinear);
image = converter.toBufferedImage(img, image);
ImageIcon icon = new ImageIcon(image);
代码示例来源:origin: us.ihmc/IHMCRobotDataVisualizer
int newWidth = ((int) (scaleWidth * (double) img.getWidth()) >> 1) << 1;
int newHeight = ((int) (scaleHeight * (double) img.getHeight()) >> 1) << 1;
img.scale(newWidth, newHeight, FilterModeEnum.kFilterBilinear);
image = converter.toBufferedImage(img, image);
ImageIcon icon = new ImageIcon(image);
代码示例来源:origin: us.ihmc/ihmc-robot-data-visualizer
int newWidth = ((int) (scaleWidth * (double) img.getWidth()) >> 1) << 1;
int newHeight = ((int) (scaleHeight * (double) img.getHeight()) >> 1) << 1;
img.scale(newWidth, newHeight, FilterModeEnum.kFilterBilinear);
image = converter.toBufferedImage(img, image);
ImageIcon icon = new ImageIcon(image);
代码示例来源:origin: us.ihmc/IHMCCommunication
frame.scale(desiredEvenHorizontalResolution, desiredEvenVerticalResolution, FilterModeEnum.kFilterBilinear);
try
代码示例来源:origin: us.ihmc/ihmc-video-codecs
pic.scale(width, height, FilterModeEnum.kFilterBilinear);
代码示例来源:origin: us.ihmc/IHMCVideoCodecs
pic.scale(width, height, FilterModeEnum.kFilterBilinear);
本文整理了Java中us.ihmc.robotDataLogger.YoVariableServer类的一些代码示例,展示了YoVariableServer类的具体用法。这些代码示例主要来源于Gith
本文整理了Java中us.ihmc.robotDataLogger.YoVariableClient类的一些代码示例,展示了YoVariableClient类的具体用法。这些代码示例主要来源于Gith
本文整理了Java中us.ihmc.kalman.YoKalmanFilter类的一些代码示例,展示了YoKalmanFilter类的具体用法。这些代码示例主要来源于Github/Stackoverf
本文整理了Java中us.ihmc.robotDataLogger.YoVariablesUpdatedListener类的一些代码示例,展示了YoVariablesUpdatedListener类的
本文整理了Java中us.ihmc.robotics.screwTheory.Wrench类的一些代码示例,展示了Wrench类的具体用法。这些代码示例主要来源于Github/Stackoverflo
本文整理了Java中us.ihmc.mecano.spatial.Wrench类的一些代码示例,展示了Wrench类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Mave
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable类的一些代码示例,展示了YoVariable类的具体用法。这些代码示例主要来源于Github/Stac
本文整理了Java中us.ihmc.yoVariables.variable.YoLong类的一些代码示例,展示了YoLong类的具体用法。这些代码示例主要来源于Github/Stackoverflo
本文整理了Java中us.ihmc.yoVariables.variable.YoFrameVector3D类的一些代码示例,展示了YoFrameVector3D类的具体用法。这些代码示例主要来源于G
本文整理了Java中us.ihmc.yoVariables.variable.YoEnum类的一些代码示例,展示了YoEnum类的具体用法。这些代码示例主要来源于Github/Stackoverflo
本文整理了Java中us.ihmc.yoVariables.variable.YoFramePoint3D类的一些代码示例,展示了YoFramePoint3D类的具体用法。这些代码示例主要来源于Git
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicsList类的一些代码示例,展示了YoGraphicsList类的具体用法。这些代码
本文整理了Java中us.ihmc.yoVariables.variable.YoBoolean类的一些代码示例,展示了YoBoolean类的具体用法。这些代码示例主要来源于Github/Stacko
本文整理了Java中us.ihmc.yoVariables.variable.YoInteger类的一些代码示例,展示了YoInteger类的具体用法。这些代码示例主要来源于Github/Stacko
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicPosition类的一些代码示例,展示了YoGraphicPosition类的具体用
本文整理了Java中us.ihmc.graphicsDescription.appearance.YoAppearance类的一些代码示例,展示了YoAppearance类的具体用法。这些代码示例主要
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicsListRegistry类的一些代码示例,展示了YoGraphicsListReg
本文整理了Java中us.ihmc.yoVariables.variable.YoDouble类的一些代码示例,展示了YoDouble类的具体用法。这些代码示例主要来源于Github/Stackove
本文整理了Java中us.ihmc.yoVariables.variable.YoFrameVector2D类的一些代码示例,展示了YoFrameVector2D类的具体用法。这些代码示例主要来源于G
本文整理了Java中us.ihmc.codecs.yuv.YUVPictureConverter类的一些代码示例,展示了YUVPictureConverter类的具体用法。这些代码示例主要来源于Git
我是一名优秀的程序员,十分优秀!