求高手代写作业,全英文,6月8日19点前要交。根据反馈情况给现金报酬(200+rmb)+ 结贴100分!小弟因缺课,作业没来得及写,请大神帮帮小弟吧。
要求能看懂英文题,题目如下。联系我可以给发pdf文件。 QQ:908179820
有兴趣会提供所有资料。题目的第一部分:You must use ImageJ and the skeleton code provided with this assignment. The code
you will add to the current template must be yours i.e. you must not re-use code from
any of the built-in ImageJ functions. Get inspiration from the sample macro provided.Assignment focus: In this assignment you will use images acquired during a CTscanning
experiment being a part of an international multi-disciplinary project. The
Image Processing component of the project quantified the amount of void in soils that
relates directly to how fast the water permeates through the soil. This is an important
factor in managing soil pollution for farmers around the world. Here, something went
wrong with the industrial CT-scan used and images came out with quite different
intensities for similar material.
Part 1(Question 1): Median filtering [15 s]
CT-scan images often suffer from “salt and pepper” acquisition noise. To help
removing such noise, you must implement a 9 by 9 median filter using the macro
skeleton code given as Q1. You must use zero padding to process the pixels close to
the image borders. Use your preferred sorting strategy. Make sure to comment
accordingly your code. Use the (smaller) images provided in the assignment test
image folder under Q1.
Q1.txt 如下
Dialog.create("9x9 median filtering");Dialog.addMessage("9x9 median filtering");
Dialog.show();
setBatchMode(true);median_filter_9();
setBatchMode("exit and display");// Produce the 9x9 median image
function median_filter_9() { // Question 1
// Implement 9x9 median filtering
}
imageJ图像处理