Skip to main content

digital tomosynthesis


Tomosynthesis, also digital tomosynthesis, is a method for performing high-resolution limited-angle tomography at mammographic dose levels.

Digital tomosynthesis is expected to replace conventional mammography due to the fact that it increases the sensitivity of breast cancer detection, as well as improving the patient procedure.[1] In digital tomosynthesis, unlike conventional mammography, minimal pressure is needed during the acquisition. This makes the experience less painful, and also reduces compression artifacts in the tissue images.[2] A subject of ongoing research, early findings have also shown that the mean glandular dose of digital breast tomosynthesis is comparable to that of full field digital mammography.[3]

The tomosynthesis technique dates back to the 1930s and belongs to the category of geometric or linear tomography.[4]

Because the data acquired are incomplete, tomosynthesis is unable to offer the extremely narrow slice widths that CT offers. However, higher resolution detectors can be used, allowing very high in-plane resolution, even if the Z-axis resolution is poor. The primary interest in tomosynthesis is in breast imaging, as an extension to mammography, where it may offer better detection rates with little extra increase in radiation.[5]

Tomosynthesis is now Food and Drug Administration (FDA) approved for use in breast cancer screening.[6]
Differences with conventional CT

Digital tomosynthesis combines digital image capture and processing with simple tube/detector motion as used in conventional radiographic tomography. Although there are some similarities to CT, it is a separate technique. In CT, the source/detector makes a complete 360-degree rotation about the subject obtaining a complete set of data from which images may be reconstructed. In digital tomosynthesis, only a small rotation angle (e.g., 40 degrees) with a small number of discrete exposures (e.g., 10) are used. This incomplete set of data can be digitally processed to yield images similar to conventional tomography with a limited depth of field. However, because the image processing is digital, a series of slices at different depths and with different thicknesses can be reconstructed from the same acquisition, saving both time and radiation exposure.

Reconstruction algorithms for tomosynthesis are significantly different from those of conventional CT because the conventional filtered back projection algorithm requires a complete set of data. Iterative algorithms based upon expectation maximization are most commonly used, but are extremely computationally intensive. Some manufacturers have produced practical systems using off-the-shelf GPUs to perform the reconstruction.

Comments

Popular posts from this blog

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...