我成功地将图像中的颜色范围更改为其他单一颜色。我想通过更改颜色以使其与色板的分布相匹配,或者至少与窄带的随机色相匹配来使其更加逼真。
一些棕褐色的草
变成了非常人造的绿色草
我的代码:
var entity = new ImageSortOrder{ ImageSortOrderId = 862};
db.ImageSortOrders.Attach(entity);
// Now you can update the properties...
// ...and save changes
db.SaveChanges();
(感谢I want to change the colors in image with python from specific color range to another color解决方案的第一部分)