#3458 Score: 1
Angus
Participant
23 pts

不知道你的outcolor是怎么写的。不过你既然也维护了一个四倍大小的sample_frame_buf和sample_depth_buf的话,我可以跟你说说我的思路,不保证对,但我最后的效果是没有问题的,然后你对照一下看看你的问题出在哪。

在方法内,我首先对四个sample分别进行采样,然后记录在sample_frame_buf和sample_depth_buf内。

如果有多于一个sample采集到有效样本的话(至少有一个sample在三角形内)
就更新这个像素的
frame_buf = (sample_frame_buf(index)+sample_frame_buf(index+1)+sample_frame_buf(index+2)+sample_frame_buf(index+3)) / 4

This post has received 1 vote up.