Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道一种简单的方法来随机获取图像(位图图像)的 5% 像素并将它们保存在另一个位图图像或数组中或其他任何东西中。
在 C# 中是否有这样的方法,或者我应该尝试遍历图像并随机选择数组 [] [] 中 5% 的数据。
反正我是用我自己的方法做到的。我用随机生成的 x 和 y 坐标遍历图像的像素,并从原始图像中选择了所有像素数的 x%。我将这些像素复制到另一个位图图像。