contributed by < JeffBla >
Q1 間接指標、鏈結串列與記憶體配置
測驗 1
解釋程式碼運作的原理
/**
* Inserts a new item into the list before a specified item.
*
* This function traverses the list to locate the position immediately before
* the item pointed to by @before and inserts @item in that position.
JeffBla changed 17 days agoView mode Like Bookmark
Identification-of-core-XCT-photographs.md
Intro
For now, due to its convenience and simplicity, I use Python to design the algorithm and find the solution to this program.
What I have done:
Read dicom images.
Extracte the data in the dicom files, such as pixel, rescale slope and rescale intercept.
Use the extracted data to calculate CT value by the formula:Hu = pixel * rescale slope + rescale intercept
Scale the value of pixel data into 0~255, so that we can apply image processing algorithms to this gray image.
JeffBla changed 2 years agoEdit mode Like Bookmark
Extracte the data in the dicom files, such as pixel, rescale slope and rescale intercept.
Use the extracted data to calculate CT value by the formula:Hu = pixel * rescale slope + rescale intercept
Scale the value of pixel data into 0~255, so that we can apply image processing algorithms to this gray image.
Use image processing algorithms to find the target
make the image blur
use Canny algorithms to find the edge of the image
find the inner circle of the rock container by Circle Hough TransformInner circle of the rock container fliter out the rock container when calculating porosity later
Threshold the image to create a binary image
JeffBla changed 2 years agoEdit mode Like Bookmark