缝雕 –访问可可中的像素数据

发布于 2024-11-09 15:12:39 字数 404 浏览 0 评论 0原文

我想实现 Avidan/Shamir 的接缝雕刻算法。在可以使用核心图像过滤器实现的能量计算阶段之后,我需要计算具有最低能量的接缝,该接缝不能作为核心图像过滤器实现,因为它使用动态编程(并且您无权访问之前用 opengl 着色语言进行的计算)。

所以我需要一种在 Objective-C 可可中有效访问图像像素数据的方法。

省略边界检查的伪代码:

for y in 0..lines(image) do:
  for x in 0..columns(image) do:
    output[x][y] = value(image, x, y) + 
                     min{ output[x-1][y-1]; output[x][y-1]; output[x+1][y-1] }

I want to implement the seam carving algorithm by Avidan/Shamir. After the energy computing stage which can be implemented using a core image filter, I need to compute the seams with the lowest energy which can't be implemented as a core image filter for it uses dynamic programming (and you don't have access to previous computations in opengl shading language).

So i need a way to access the pixel data of an image efficiently in objective-c cocoa.

Pseudo code omitting boundary checks:

for y in 0..lines(image) do:
  for x in 0..columns(image) do:
    output[x][y] = value(image, x, y) + 
                     min{ output[x-1][y-1]; output[x][y-1]; output[x+1][y-1] }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮世清欢 2024-11-16 15:12:39

访问图像像素值的最佳方法是使用 CGBitmapContextCreate。关于这一点的重要部分是,当您创建上下文时,您可以传递指针,该指针将用作位图数据的后备存储。这意味着数据将保存像素值,您可以用它们做任何您想做的事情。

因此步骤应该是:

  1. 使用 malloc 或其他合适的分配器分配缓冲区。
  2. 将该缓冲区作为第一个参数传递给 CGBitmapContextCreate。
  3. 将图像绘制到返回的 CGBitmapContextRef 中。
  4. 释放上下文。
  5. 现在您有了原始数据指针,该指针填充了调用 CGBitmapContextCreate 中指定格式的像素。

The best way to get access to the pixel values for an image, is to create a CGBitmapContextRef with CGBitmapContextCreate. The important part about this is that when you create the context, you get to pass the pointer in that will be used as the backing store for the bitmap's data. Meaning that data will hold the pixel values and you can do what ever you want with them.

So the steps should be:

  1. Allocate a buffer with malloc or another suitable allocator.
  2. Pass that buffer as the first parameter to CGBitmapContextCreate.
  3. Draw your image into the returned CGBitmapContextRef.
  4. Release the context.
  5. Now you have your original data pointer that is filled with pixels in the format specified in the call to CGBitmapContextCreate.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文