This repository was archived by the owner on Nov 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathregistration-example.ts
More file actions
77 lines (65 loc) · 2.34 KB
/
Copy pathregistration-example.ts
File metadata and controls
77 lines (65 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import { ProductDetails } from '@/types/productDetails';
export const registrationExample: ProductDetails = {
id: "example-registration",
name: "Example AI Registration",
company: "Example Company",
companyUrl: "https://example.com",
category: "Registration",
description: "An example image registration product for testing and documentation.",
url: "https://example.com/products/registration",
contactEmail: "info@example.com",
contactPhone: "+1 555-123-4567",
modality: ["CT", "MRI", "PET", "CBCT"],
anatomy: ["Brain", "Head & Neck", "Thorax", "Abdomen", "Pelvis"],
features: [
"Deformable image registration",
"Multi-modality support",
"Deep learning-based registration algorithm",
"Auto-propagation of contours",
"Registration quality metrics"
],
technicalSpecs: {
inputFormat: ["DICOM", "DICOM RT-STRUCT"],
outputFormat: ["Deformation vector fields", "Registered images", "DICOM RT-STRUCT"],
integrations: ["Major TPS systems", "PACS", "Standalone software"],
processingTime: "<60 seconds for rigid registration, <3 minutes for deformable",
accuracy: "Mean TRE <2mm for anatomical landmarks"
},
regulatoryInfo: {
ceMark: true,
fdaClearance: true,
regulatoryClass: "Class II medical device",
approvalDate: "2023-01-10"
},
marketInfo: {
releaseDate: "2022-06-15",
countries: ["USA", "EU", "UK", "Canada", "Australia", "Japan", "China"],
installBase: "200+ installations worldwide"
},
pricingInfo: {
pricingModel: "Perpetual license with annual maintenance",
priceRange: "$40,000-$70,000 + $8,000-$15,000/year maintenance",
trialAvailability: "45-day evaluation license available"
},
evidence: [
{
type: "Validation Study",
description: "Comparison with manual registration by experts",
link: "https://example.com/validation"
},
{
type: "Clinical Impact Study",
description: "Time savings and accuracy improvements in clinical workflow",
link: "https://doi.org/10.xxxx/xxxx.xxxx"
}
],
limitations: [
"Reduced accuracy for significant anatomical changes",
"Performance depends on image quality",
"May require manual adjustment for complex cases"
],
lastUpdated: "2023-05-15",
lastRevised: "2023-05-15",
lastVerified: "2023-05-15"
};
export default registrationExample;