Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
是求请教啊ಥ_ಥ def find_max(blobs): max_size=0 for blob in blobs: if blob[2]*blob[3] > max_size: max_blob=blob max_size = blob[2]*blob[3] return max_blob
请问在这段代码里, if blob[2]*blob[3] > max_size: max_blob=blob 这一句是什么意思啊? blob[2]*blob[3] 是什么呢
blob[2] w为宽度 blob[3] h为高度
噢!明白了!谢谢!