Future of Medicine & Innovation AI in Diagnosis: Will Doctors Be Replaced or Empowered? 3D Printing Organs: Are We Close to Solving Organ Shortage? Robotic Surgery vs Traditional Surgery: Outcomes and Costs Prepare the presentation on the topic of 9 slides
AI diagnosis medicine 2025 2026 doctors empowered replaced statistics
3D bioprinting organs 2025 2026 progress statistics robotic surgery outcomes costs vs traditional
mkdir -p /tmp/workspace/future-medicine-pptx
~/future-medicine-pptx/build_pptx.py
from pptx import Presentation
from pptx.util import Inches, Pt, Emu
from pptx.dml.color import RGBColor
from pptx.enum.text import PP_ALIGN, MSO_ANCHOR
from pptx.oxml.ns import qn
from lxml import etree
from io import BytesIO
# ── Colour palette ──────────────────────────────────────────────────────────
DARK_NAVY = RGBColor(0x0A, 0x1B, 0x3D) # deep navy – backgrounds
MID_BLUE = RGBColor(0x10, 0x4E, 0x8B) # section headers
ACCENT_CYAN = RGBColor(0x00, 0xC2, 0xD4) # highlights / accents
ACCENT_TEAL = RGBColor(0x00, 0x8B, 0x8B) # secondary accent
WHITE = RGBColor(0xFF, 0xFF, 0xFF)
LIGHT_GREY = RGBColor(0xE8, 0xF0, 0xFE)
TEXT_DARK = RGBColor(0x1A, 0x1A, 0x2E)
YELLOW_ACC = RGBColor(0xFF, 0xD7, 0x00)
GREEN_ACC = RGBColor(0x00, 0xE5, 0x76)
ORANGE_ACC = RGBColor(0xFF, 0x6B, 0x35)
W = Inches(13.333)
H = Inches(7.5)
prs = Presentation()
prs.slide_width = W
prs.slide_height = H
blank = prs.slide_layouts[6]
# ── Helpers ─────────────────────────────────────────────────────────────────
def add_rect(slide, x, y, w, h, fill_rgb, alpha=None):
shape = slide.shapes.add_shape(1, x, y, w, h) # MSO_SHAPE_TYPE.RECTANGLE = 1
shape.line.fill.background()
shape.fill.solid()
shape.fill.fore_color.rgb = fill_rgb
return shape
def add_text(slide, text, x, y, w, h, size, bold=False, italic=False,
color=WHITE, align=PP_ALIGN.LEFT, wrap=True,
v_anchor=MSO_ANCHOR.TOP):
tb = slide.shapes.add_textbox(x, y, w, h)
tf = tb.text_frame
tf.word_wrap = wrap
tf.vertical_anchor = v_anchor
tf.margin_left = 0; tf.margin_right = 0
tf.margin_top = 0; tf.margin_bottom = 0
p = tf.paragraphs[0]
p.alignment = align
run = p.add_run()
run.text = text
run.font.size = Pt(size)
run.font.bold = bold
run.font.italic = italic
run.font.color.rgb = color
run.font.name = "Calibri"
return tb
def add_multiline(slide, lines, x, y, w, h, size, color=WHITE,
bold=False, align=PP_ALIGN.LEFT, line_space_pt=None):
"""lines: list of (text, bold_override, color_override)"""
tb = slide.shapes.add_textbox(x, y, w, h)
tf = tb.text_frame
tf.word_wrap = True
tf.margin_left = 0; tf.margin_right = 0
tf.margin_top = 0; tf.margin_bottom = 0
for i, item in enumerate(lines):
if isinstance(item, str):
txt, b, c = item, bold, color
else:
txt = item[0]
b = item[1] if len(item) > 1 else bold
c = item[2] if len(item) > 2 else color
p = tf.paragraphs[0] if i == 0 else tf.add_paragraph()
p.alignment = align
if line_space_pt:
from pptx.util import Pt as _Pt
p.line_spacing = _Pt(line_space_pt)
run = p.add_run()
run.text = txt
run.font.size = Pt(size)
run.font.bold = b
run.font.color.rgb = c
run.font.name = "Calibri"
return tb
def add_divider(slide, x, y, w, h, color):
rect = slide.shapes.add_shape(1, x, y, w, h)
rect.line.fill.background()
rect.fill.solid()
rect.fill.fore_color.rgb = color
def stat_box(slide, x, y, w, h, number, label, num_color=ACCENT_CYAN, bg=MID_BLUE):
add_rect(slide, x, y, w, h, bg)
# number
add_text(slide, number, x + Inches(0.1), y + Inches(0.1),
w - Inches(0.2), Inches(0.9),
size=32, bold=True, color=num_color, align=PP_ALIGN.CENTER,
v_anchor=MSO_ANCHOR.MIDDLE)
# label
add_text(slide, label, x + Inches(0.1), y + Inches(1.0),
w - Inches(0.2), h - Inches(1.1),
size=12, bold=False, color=WHITE, align=PP_ALIGN.CENTER,
v_anchor=MSO_ANCHOR.TOP)
# ════════════════════════════════════════════════════════════════════════════
# SLIDE 1 – Title
# ════════════════════════════════════════════════════════════════════════════
s1 = prs.slides.add_slide(blank)
# Full background
add_rect(s1, 0, 0, W, H, DARK_NAVY)
# Decorative gradient-like bars (cyan, teal, blue stacked)
bar_h = Inches(0.18)
for i, col in enumerate([ACCENT_CYAN, ACCENT_TEAL, MID_BLUE]):
add_rect(s1, 0, Inches(6.5) + i * bar_h, W, bar_h, col)
# Left accent strip
add_rect(s1, 0, 0, Inches(0.08), H, ACCENT_CYAN)
# Top label
add_text(s1, "FUTURE OF MEDICINE & INNOVATION",
Inches(0.3), Inches(0.35), Inches(12), Inches(0.55),
size=13, bold=True, color=ACCENT_CYAN, align=PP_ALIGN.LEFT)
# Divider line
add_divider(s1, Inches(0.3), Inches(0.95), Inches(12.5), Inches(0.03), ACCENT_CYAN)
# Main title
add_text(s1, "The Future of Medicine",
Inches(0.3), Inches(1.1), Inches(10), Inches(1.4),
size=54, bold=True, color=WHITE, align=PP_ALIGN.LEFT)
# Sub-title
add_text(s1, "& Innovation",
Inches(0.3), Inches(2.45), Inches(10), Inches(1.1),
size=54, bold=True, color=ACCENT_CYAN, align=PP_ALIGN.LEFT)
# Three topic pills
topics = [
("AI in Diagnosis", ACCENT_CYAN),
("3D-Printed Organs", GREEN_ACC),
("Robotic vs Traditional Surgery", ORANGE_ACC),
]
pill_x = Inches(0.3)
pill_y = Inches(3.8)
for label, col in topics:
pw = Inches(3.3)
add_rect(s1, pill_x, pill_y, pw, Inches(0.5), col)
add_text(s1, label, pill_x + Inches(0.15), pill_y, pw - Inches(0.3), Inches(0.5),
size=14, bold=True, color=TEXT_DARK, align=PP_ALIGN.LEFT,
v_anchor=MSO_ANCHOR.MIDDLE)
pill_x += pw + Inches(0.15)
# Bottom tag line
add_text(s1, "How emerging technologies are reshaping diagnosis, surgery and organ transplantation",
Inches(0.3), Inches(4.6), Inches(9), Inches(1.0),
size=16, italic=True, color=LIGHT_GREY, align=PP_ALIGN.LEFT)
# Bottom right – year badge
add_rect(s1, Inches(11.3), Inches(6.7), Inches(1.8), Inches(0.6), ACCENT_CYAN)
add_text(s1, "2026 EDITION", Inches(11.3), Inches(6.7), Inches(1.8), Inches(0.6),
size=13, bold=True, color=TEXT_DARK, align=PP_ALIGN.CENTER,
v_anchor=MSO_ANCHOR.MIDDLE)
# ════════════════════════════════════════════════════════════════════════════
# SLIDE 2 – AI in Diagnosis: Overview
# ════════════════════════════════════════════════════════════════════════════
s2 = prs.slides.add_slide(blank)
add_rect(s2, 0, 0, W, H, DARK_NAVY)
# Header band
add_rect(s2, 0, 0, W, Inches(1.35), MID_BLUE)
add_rect(s2, 0, 0, Inches(0.08), H, ACCENT_CYAN)
add_text(s2, "AI IN DIAGNOSIS", Inches(0.25), Inches(0.08),
Inches(9), Inches(0.55), size=12, bold=True, color=ACCENT_CYAN)
add_text(s2, "Will Doctors Be Replaced or Empowered?",
Inches(0.25), Inches(0.55), Inches(12), Inches(0.72),
size=28, bold=True, color=WHITE)
add_divider(s2, Inches(0.25), Inches(1.3), Inches(12.8), Inches(0.04), ACCENT_CYAN)
# Left column – key points
points = [
("🤖 AI matches physician accuracy in controlled diagnostics", False, WHITE),
("", False, WHITE),
("Google Med-PaLM: 92.6% accuracy vs 92.9% for physicians", False, LIGHT_GREY),
("", False, WHITE),
("🔬 Expert clinicians still outperform AI by ~16 percentage points", False, WHITE),
("", False, WHITE),
(" in complex, multi-system cases (npj Digital Medicine, 2025)", False, LIGHT_GREY),
("", False, WHITE),
("📋 AI excels at: radiology reads, pathology slides, ECG analysis,", False, WHITE),
("", False, WHITE),
(" retinal imaging, genomic risk scoring", False, LIGHT_GREY),
("", False, WHITE),
("💡 1,250+ FDA-approved AI medical devices as of mid-2025", False, WHITE),
("", False, WHITE),
(" – none performs a physical examination", False, LIGHT_GREY),
]
add_multiline(s2, points, Inches(0.35), Inches(1.45), Inches(6.8), Inches(5.8),
size=15, line_space_pt=4)
# Right column – stat boxes
stat_box(s2, Inches(7.6), Inches(1.55), Inches(2.4), Inches(2.0),
"81%", "of physicians now use\nAI professionally\n(AMA, 2026)", num_color=ACCENT_CYAN)
stat_box(s2, Inches(10.2), Inches(1.55), Inches(2.8), Inches(2.0),
"63%", "actively using AI in\nclinical practice\n(Doximity 2026)", num_color=GREEN_ACC)
stat_box(s2, Inches(7.6), Inches(3.75), Inches(2.4), Inches(2.0),
"46%", "of physicians say AI\nimproves detection\nrates most", num_color=YELLOW_ACC)
stat_box(s2, Inches(10.2), Inches(3.75), Inches(2.8), Inches(2.0),
"3x", "growth in AI\nadoption since\n2023 AMA survey", num_color=ORANGE_ACC)
# Footer
add_rect(s2, 0, Inches(7.1), W, Inches(0.4), MID_BLUE)
add_text(s2, "Sources: AMA Physician Survey 2026 | Doximity State of AI in Medicine Report 2026 | npj Digital Medicine 2025",
Inches(0.3), Inches(7.1), Inches(13), Inches(0.4),
size=9, color=LIGHT_GREY, align=PP_ALIGN.LEFT, v_anchor=MSO_ANCHOR.MIDDLE)
# ════════════════════════════════════════════════════════════════════════════
# SLIDE 3 – AI: Replace vs Empower
# ════════════════════════════════════════════════════════════════════════════
s3 = prs.slides.add_slide(blank)
add_rect(s3, 0, 0, W, H, RGBColor(0x0D, 0x1B, 0x35))
add_rect(s3, 0, 0, W, Inches(1.25), MID_BLUE)
add_rect(s3, 0, 0, Inches(0.08), H, ACCENT_CYAN)
add_text(s3, "AI IN DIAGNOSIS", Inches(0.25), Inches(0.08), Inches(9), Inches(0.5),
size=12, bold=True, color=ACCENT_CYAN)
add_text(s3, "Replace vs. Empower — The Consensus",
Inches(0.25), Inches(0.52), Inches(12), Inches(0.68),
size=28, bold=True, color=WHITE)
add_divider(s3, Inches(0.25), Inches(1.22), Inches(12.8), Inches(0.04), ACCENT_CYAN)
# Two large panels side by side
panel_y = Inches(1.4)
panel_h = Inches(5.5)
# Left panel – Replace concerns
add_rect(s3, Inches(0.25), panel_y, Inches(6.1), panel_h, RGBColor(0x14, 0x2D, 0x55))
add_rect(s3, Inches(0.25), panel_y, Inches(6.1), Inches(0.6), ORANGE_ACC)
add_text(s3, " ⚠ Arguments for Replacement",
Inches(0.3), panel_y, Inches(6.0), Inches(0.6),
size=15, bold=True, color=TEXT_DARK, v_anchor=MSO_ANCHOR.MIDDLE)
replace_pts = [
"• AI matches specialist accuracy in dermatology, radiology, ophthalmology",
"",
"• Processes millions of images faster than any human",
"",
"• Reduces cognitive bias in pattern-recognition tasks",
"",
"• Cost savings drive economic pressure on routine diagnosticians",
"",
"• BLS projects only 3% physician job growth 2024–2034 — slower than historical",
]
add_multiline(s3, replace_pts, Inches(0.45), panel_y + Inches(0.75),
Inches(5.7), panel_h - Inches(0.8), size=13, color=LIGHT_GREY, line_space_pt=5)
# Right panel – Empower evidence
add_rect(s3, Inches(6.7), panel_y, Inches(6.35), panel_h, RGBColor(0x0A, 0x2E, 0x2E))
add_rect(s3, Inches(6.7), panel_y, Inches(6.35), Inches(0.6), GREEN_ACC)
add_text(s3, " ✅ Evidence for Empowerment",
Inches(6.75), panel_y, Inches(6.2), Inches(0.6),
size=15, bold=True, color=TEXT_DARK, v_anchor=MSO_ANCHOR.MIDDLE)
empower_pts = [
"• 76%+ of physicians say AI improves patient care (AMA 2026)",
"",
"• AI scribes cut documentation burden — frees clinical time",
"",
"• Ambient note-taking adoption up 9 pts in 12 months (Doximity)",
"",
"• AI flags rare diseases clinicians might miss in dense records",
"",
"• AMA rebrands it 'Augmented Intelligence' — not artificial replacement",
]
add_multiline(s3, empower_pts, Inches(6.85), panel_y + Inches(0.75),
Inches(6.0), panel_h - Inches(0.8), size=13, color=LIGHT_GREY, line_space_pt=5)
# Centre quote
add_text(s3, "\"AI will not replace doctors — doctors who use AI will replace\n those who don't.\"",
Inches(2.5), Inches(6.5), Inches(8.5), Inches(0.9),
size=14, italic=True, color=ACCENT_CYAN, align=PP_ALIGN.CENTER)
# ════════════════════════════════════════════════════════════════════════════
# SLIDE 4 – 3D Bioprinting: Introduction
# ════════════════════════════════════════════════════════════════════════════
s4 = prs.slides.add_slide(blank)
add_rect(s4, 0, 0, W, H, DARK_NAVY)
add_rect(s4, 0, 0, W, Inches(1.25), RGBColor(0x00, 0x70, 0x60))
add_rect(s4, 0, 0, Inches(0.08), H, GREEN_ACC)
add_text(s4, "3D PRINTING ORGANS", Inches(0.25), Inches(0.08), Inches(9), Inches(0.5),
size=12, bold=True, color=GREEN_ACC)
add_text(s4, "Are We Close to Solving the Organ Shortage?",
Inches(0.25), Inches(0.52), Inches(12), Inches(0.68),
size=28, bold=True, color=WHITE)
add_divider(s4, Inches(0.25), Inches(1.22), Inches(12.8), Inches(0.04), GREEN_ACC)
# Crisis statistics top row
crisis_stats = [
("100,000+", "Americans on\norgan waiting lists"),
("17", "patients die\nevery day waiting"),
("1 every\n10 min", "new patient\nadded to waitlist"),
("$1.9 Bn", "Bioprinting market\nvalue in 2025"),
]
sx = Inches(0.3)
for num, lbl in crisis_stats:
stat_box(s4, sx, Inches(1.4), Inches(2.9), Inches(1.8), num, lbl,
num_color=GREEN_ACC, bg=RGBColor(0x0A, 0x30, 0x28))
sx += Inches(3.1)
# Timeline of milestones
add_text(s4, "Key Milestones in 3D Bioprinting",
Inches(0.3), Inches(3.35), Inches(12), Inches(0.45),
size=16, bold=True, color=GREEN_ACC)
add_divider(s4, Inches(0.3), Inches(3.78), Inches(12.5), Inches(0.03), ACCENT_TEAL)
milestones = [
("2006", "Wake Forest: first bioprinted bladder successfully implanted in a patient"),
("2019", "Israeli researchers print first 3D heart with human tissue (small scale)"),
("2025", "Liver tissue constructs & bioprinted skin grafts enter early-phase human trials"),
("2025", "Australian team builds robot that bioprints directly inside the human body"),
("2026", "Market forecast: USD 2.28 Bn; projected USD 14.12 Bn by 2036 (20% CAGR)"),
]
my = Inches(3.9)
for year, desc in milestones:
add_rect(s4, Inches(0.3), my, Inches(0.85), Inches(0.48), ACCENT_TEAL)
add_text(s4, year, Inches(0.3), my, Inches(0.85), Inches(0.48),
size=13, bold=True, color=WHITE, align=PP_ALIGN.CENTER,
v_anchor=MSO_ANCHOR.MIDDLE)
add_text(s4, desc, Inches(1.3), my, Inches(11.7), Inches(0.48),
size=13, color=LIGHT_GREY, v_anchor=MSO_ANCHOR.MIDDLE)
my += Inches(0.6)
# ════════════════════════════════════════════════════════════════════════════
# SLIDE 5 – 3D Bioprinting: How It Works & Challenges
# ════════════════════════════════════════════════════════════════════════════
s5 = prs.slides.add_slide(blank)
add_rect(s5, 0, 0, W, H, DARK_NAVY)
add_rect(s5, 0, 0, W, Inches(1.25), RGBColor(0x00, 0x70, 0x60))
add_rect(s5, 0, 0, Inches(0.08), H, GREEN_ACC)
add_text(s5, "3D PRINTING ORGANS", Inches(0.25), Inches(0.08), Inches(9), Inches(0.5),
size=12, bold=True, color=GREEN_ACC)
add_text(s5, "How It Works — and What Still Needs to Be Solved",
Inches(0.25), Inches(0.52), Inches(12), Inches(0.68),
size=28, bold=True, color=WHITE)
add_divider(s5, Inches(0.25), Inches(1.22), Inches(12.8), Inches(0.04), GREEN_ACC)
# Process steps
steps = [
("1", "SCAN", "Patient's organ is scanned\nusing MRI or CT imaging"),
("2", "DESIGN", "3D digital blueprint created\nfrom patient's own data"),
("3", "BIOINK", "Living cells + biomaterials\nloaded into bioprinter"),
("4", "PRINT", "Layer-by-layer construction\nof tissue scaffold"),
("5", "MATURE", "Bioreactor nurtures cells\ninto functional tissue"),
("6", "IMPLANT", "Organ implanted — patient's\nown cells = low rejection"),
]
sx = Inches(0.3)
for num, title, desc in steps:
box_w = Inches(2.0)
add_rect(s5, sx, Inches(1.4), box_w, Inches(2.3), RGBColor(0x0A, 0x30, 0x28))
add_rect(s5, sx, Inches(1.4), box_w, Inches(0.55), ACCENT_TEAL)
add_text(s5, f"{num}. {title}", sx + Inches(0.05), Inches(1.4),
box_w - Inches(0.1), Inches(0.55),
size=14, bold=True, color=WHITE, align=PP_ALIGN.CENTER,
v_anchor=MSO_ANCHOR.MIDDLE)
add_text(s5, desc, sx + Inches(0.1), Inches(2.0),
box_w - Inches(0.2), Inches(1.6),
size=12, color=LIGHT_GREY, v_anchor=MSO_ANCHOR.TOP)
sx += Inches(2.15)
# Challenges section
add_text(s5, "Remaining Challenges",
Inches(0.3), Inches(3.9), Inches(12), Inches(0.45),
size=16, bold=True, color=ORANGE_ACC)
add_divider(s5, Inches(0.3), Inches(4.33), Inches(12.5), Inches(0.03), ORANGE_ACC)
challenges_l = [
"• Vascularisation: building blood vessel networks inside printed organs",
"• Long-term durability: printed tissue must survive decades",
"• Regulatory pathway: no full solid organ yet approved for transplant",
]
challenges_r = [
"• Scalability: printing time for complex organs can exceed 24 hours",
"• Immune integration: even autologous cells can trigger responses",
"• Cost: printing a full kidney costs ~$1M+ at research stage",
]
add_multiline(s5, challenges_l, Inches(0.35), Inches(4.45), Inches(6.2), Inches(2.8),
size=13, color=LIGHT_GREY, line_space_pt=6)
add_multiline(s5, challenges_r, Inches(6.8), Inches(4.45), Inches(6.2), Inches(2.8),
size=13, color=LIGHT_GREY, line_space_pt=6)
# ════════════════════════════════════════════════════════════════════════════
# SLIDE 6 – Robotic Surgery: Introduction
# ════════════════════════════════════════════════════════════════════════════
s6 = prs.slides.add_slide(blank)
add_rect(s6, 0, 0, W, H, DARK_NAVY)
add_rect(s6, 0, 0, W, Inches(1.25), RGBColor(0x4A, 0x00, 0x80))
add_rect(s6, 0, 0, Inches(0.08), H, ORANGE_ACC)
add_text(s6, "ROBOTIC SURGERY", Inches(0.25), Inches(0.08), Inches(9), Inches(0.5),
size=12, bold=True, color=ORANGE_ACC)
add_text(s6, "Robotic vs. Traditional Surgery — Outcomes & Costs",
Inches(0.25), Inches(0.52), Inches(12), Inches(0.68),
size=28, bold=True, color=WHITE)
add_divider(s6, Inches(0.25), Inches(1.22), Inches(12.8), Inches(0.04), ORANGE_ACC)
# What is robotic surgery box
add_rect(s6, Inches(0.3), Inches(1.4), Inches(8.5), Inches(1.7),
RGBColor(0x1C, 0x0A, 0x30))
add_text(s6, "What Is Robotic Surgery?",
Inches(0.5), Inches(1.48), Inches(8), Inches(0.45),
size=15, bold=True, color=ORANGE_ACC)
add_text(s6,
"Surgeon operates from a console controlling robotic arms fitted with tiny instruments "
"and a 3D HD camera. The da Vinci Surgical System (Intuitive Surgical) dominates the "
"market. Robotic surgery is minimally invasive — incisions are 1–2 cm versus 15–30 cm "
"for open procedures.",
Inches(0.5), Inches(1.95), Inches(8.2), Inches(1.0),
size=13, color=LIGHT_GREY, wrap=True)
# Specialties box
add_rect(s6, Inches(9.1), Inches(1.4), Inches(3.95), Inches(1.7),
RGBColor(0x1C, 0x0A, 0x30))
add_text(s6, "Common Procedures",
Inches(9.2), Inches(1.48), Inches(3.7), Inches(0.45),
size=15, bold=True, color=ORANGE_ACC)
procs = [
"• Prostatectomy (radical)",
"• Hysterectomy",
"• Colorectal resection",
"• Cardiac valve repair",
"• Bariatric surgery",
]
add_multiline(s6, procs, Inches(9.2), Inches(1.95), Inches(3.7), Inches(1.0),
size=12, color=LIGHT_GREY, line_space_pt=4)
# Key advantages in colour cards
advantages = [
(ORANGE_ACC, "Precision", "Sub-millimetre\naccuracy beyond\nhuman hand"),
(RGBColor(0xC0, 0x50, 0xFF), "Tremor Filter", "Software removes\nphysician hand\ntremor in real time"),
(ACCENT_CYAN, "3D Vision", "10x magnification\nhigh-def 3D field\nfor surgeon"),
(GREEN_ACC, "Less Blood Loss", "Robotic patients\nlose 50–80% less\nblood on average"),
]
ax = Inches(0.3)
for col, title, desc in advantages:
add_rect(s6, ax, Inches(3.3), Inches(2.9), Inches(2.6), RGBColor(0x1A, 0x06, 0x28))
add_rect(s6, ax, Inches(3.3), Inches(2.9), Inches(0.55), col)
add_text(s6, title, ax + Inches(0.65), Inches(3.3), Inches(2.1), Inches(0.55),
size=15, bold=True, color=WHITE, v_anchor=MSO_ANCHOR.MIDDLE)
add_text(s6, desc, ax + Inches(0.1), Inches(3.9), Inches(2.7), Inches(1.9),
size=13, color=LIGHT_GREY)
ax += Inches(3.1)
# Growth fact
add_rect(s6, Inches(0.3), Inches(6.1), Inches(12.7), Inches(0.7),
RGBColor(0x1C, 0x0A, 0x30))
add_text(s6,
"📈 Global surgical robotics market: $7.4 Bn (2024) → projected $24 Bn by 2031 "
"| da Vinci performs 2M+ procedures annually worldwide",
Inches(0.5), Inches(6.1), Inches(12.5), Inches(0.7),
size=14, bold=True, color=YELLOW_ACC, v_anchor=MSO_ANCHOR.MIDDLE)
# ════════════════════════════════════════════════════════════════════════════
# SLIDE 7 – Robotic vs Traditional: Head-to-Head
# ════════════════════════════════════════════════════════════════════════════
s7 = prs.slides.add_slide(blank)
add_rect(s7, 0, 0, W, H, DARK_NAVY)
add_rect(s7, 0, 0, W, Inches(1.25), RGBColor(0x4A, 0x00, 0x80))
add_rect(s7, 0, 0, Inches(0.08), H, ORANGE_ACC)
add_text(s7, "ROBOTIC SURGERY", Inches(0.25), Inches(0.08), Inches(9), Inches(0.5),
size=12, bold=True, color=ORANGE_ACC)
add_text(s7, "Head-to-Head: Outcomes & Cost Comparison",
Inches(0.25), Inches(0.52), Inches(12), Inches(0.68),
size=28, bold=True, color=WHITE)
add_divider(s7, Inches(0.25), Inches(1.22), Inches(12.8), Inches(0.04), ORANGE_ACC)
# Column headers
add_rect(s7, Inches(3.6), Inches(1.35), Inches(4.2), Inches(0.55),
RGBColor(0xC0, 0x50, 0xFF))
add_text(s7, "🤖 ROBOTIC", Inches(3.6), Inches(1.35), Inches(4.2), Inches(0.55),
size=16, bold=True, color=WHITE, align=PP_ALIGN.CENTER,
v_anchor=MSO_ANCHOR.MIDDLE)
add_rect(s7, Inches(8.2), Inches(1.35), Inches(4.9), Inches(0.55),
RGBColor(0x00, 0x60, 0x80))
add_text(s7, "🏥 TRADITIONAL / LAPAROSCOPIC",
Inches(8.2), Inches(1.35), Inches(4.9), Inches(0.55),
size=16, bold=True, color=WHITE, align=PP_ALIGN.CENTER,
v_anchor=MSO_ANCHOR.MIDDLE)
# Comparison rows
rows = [
("Hospital Stay", "1–2 days", "3–5 days"),
("Blood Loss", "50–80% lower", "Baseline"),
("Complication Rate", "Marginally lower", "Slightly higher"),
("Recovery Time", "2–3 weeks", "4–8 weeks"),
("Surgeon Fatigue", "Significantly less", "High over long ops"),
("Procedure Cost", "+20–40% higher", "Lower upfront cost"),
("Learning Curve", "100–250 procedures", "Standard residency"),
("Long-term Outcomes", "Similar or better", "Similar"),
]
ry = Inches(1.95)
for i, (metric, rob, trad) in enumerate(rows):
bg = RGBColor(0x10, 0x1A, 0x40) if i % 2 == 0 else RGBColor(0x0C, 0x14, 0x35)
add_rect(s7, Inches(0.25), ry, Inches(3.2), Inches(0.6), bg)
add_rect(s7, Inches(3.6), ry, Inches(4.2), Inches(0.6),
RGBColor(0x16, 0x08, 0x28) if i % 2 == 0 else RGBColor(0x1C, 0x0A, 0x30))
add_rect(s7, Inches(8.2), ry, Inches(4.9), Inches(0.6),
RGBColor(0x06, 0x18, 0x28) if i % 2 == 0 else RGBColor(0x08, 0x20, 0x30))
add_text(s7, metric, Inches(0.35), ry, Inches(3.0), Inches(0.6),
size=13, bold=True, color=LIGHT_GREY, v_anchor=MSO_ANCHOR.MIDDLE)
add_text(s7, rob, Inches(3.7), ry, Inches(4.0), Inches(0.6),
size=13, color=GREEN_ACC, v_anchor=MSO_ANCHOR.MIDDLE)
add_text(s7, trad, Inches(8.3), ry, Inches(4.7), Inches(0.6),
size=13, color=ACCENT_CYAN, v_anchor=MSO_ANCHOR.MIDDLE)
ry += Inches(0.62)
# ════════════════════════════════════════════════════════════════════════════
# SLIDE 8 – Robotic Surgery: Costs & Limitations
# ════════════════════════════════════════════════════════════════════════════
s8 = prs.slides.add_slide(blank)
add_rect(s8, 0, 0, W, H, DARK_NAVY)
add_rect(s8, 0, 0, W, Inches(1.25), RGBColor(0x4A, 0x00, 0x80))
add_rect(s8, 0, 0, Inches(0.08), H, ORANGE_ACC)
add_text(s8, "ROBOTIC SURGERY", Inches(0.25), Inches(0.08), Inches(9), Inches(0.5),
size=12, bold=True, color=ORANGE_ACC)
add_text(s8, "Costs, Barriers & the Road Ahead",
Inches(0.25), Inches(0.52), Inches(12), Inches(0.68),
size=28, bold=True, color=WHITE)
add_divider(s8, Inches(0.25), Inches(1.22), Inches(12.8), Inches(0.04), ORANGE_ACC)
# Cost breakdown boxes
cost_items = [
("$1.5–2M", "Da Vinci system\npurchase price"),
("$100–150K", "Annual\nmaintenance cost"),
("$3,000–6,000", "Additional per-case\ninstrument cost"),
("$24 Bn", "Market size\nprojected by 2031"),
]
cx = Inches(0.3)
for num, lbl in cost_items:
stat_box(s8, cx, Inches(1.45), Inches(2.9), Inches(1.9), num, lbl,
num_color=YELLOW_ACC, bg=RGBColor(0x1C, 0x0A, 0x30))
cx += Inches(3.1)
# Limitations
add_text(s8, "Key Limitations of Robotic Surgery",
Inches(0.3), Inches(3.55), Inches(12), Inches(0.45),
size=16, bold=True, color=ORANGE_ACC)
add_divider(s8, Inches(0.3), Inches(3.98), Inches(12.5), Inches(0.03), ORANGE_ACC)
lims_l = [
"❌ Lack of tactile (haptic) feedback — surgeon cannot 'feel' tissue resistance",
"",
"❌ Higher upfront hospital investment restricts access in developing nations",
"",
"❌ Long setup time adds 15–45 minutes to procedure duration",
]
lims_r = [
"❌ Steep learning curve: surgeons need 100–250 cases to reach proficiency",
"",
"❌ Technical malfunctions, though rare, carry serious intraoperative risk",
"",
"❌ Evidence of superiority over skilled laparoscopy remains mixed in some domains",
]
add_multiline(s8, lims_l, Inches(0.35), Inches(4.1), Inches(6.2), Inches(3.0),
size=13, color=LIGHT_GREY, line_space_pt=5)
add_multiline(s8, lims_r, Inches(6.8), Inches(4.1), Inches(6.2), Inches(3.0),
size=13, color=LIGHT_GREY, line_space_pt=5)
# Future strip
add_rect(s8, Inches(0.3), Inches(6.55), Inches(12.7), Inches(0.7),
RGBColor(0x1C, 0x0A, 0x30))
add_text(s8,
"🔮 Next Gen: Haptic feedback gloves | AI-assisted intraoperative navigation | "
"Autonomous sub-tasks (suturing) | 5G-enabled remote telesurgery",
Inches(0.5), Inches(6.55), Inches(12.3), Inches(0.7),
size=13, bold=True, color=ACCENT_CYAN, v_anchor=MSO_ANCHOR.MIDDLE)
# ════════════════════════════════════════════════════════════════════════════
# SLIDE 9 – Summary & Future Outlook
# ════════════════════════════════════════════════════════════════════════════
s9 = prs.slides.add_slide(blank)
add_rect(s9, 0, 0, W, H, DARK_NAVY)
# Decorative bars top
for i, col in enumerate([ACCENT_CYAN, GREEN_ACC, ORANGE_ACC]):
add_rect(s9, 0, i * Inches(0.13), W, Inches(0.13), col)
# Title
add_text(s9, "The Future Is Already Here",
Inches(0.4), Inches(0.5), Inches(12), Inches(0.85),
size=38, bold=True, color=WHITE, align=PP_ALIGN.CENTER)
add_text(s9, "Key Takeaways & What Comes Next",
Inches(0.4), Inches(1.3), Inches(12), Inches(0.5),
size=18, italic=True, color=ACCENT_CYAN, align=PP_ALIGN.CENTER)
add_divider(s9, Inches(2.0), Inches(1.85), Inches(9.3), Inches(0.04), ACCENT_CYAN)
# Three summary columns
cols = [
(ACCENT_CYAN, "🤖 AI in Diagnosis",
["81% of physicians use AI professionally (AMA 2026)",
"AI augments — not replaces — clinical judgement",
"1,250+ FDA-approved AI diagnostic devices",
"Daily AI use among adopters: 69%",
"Consensus: 'Augmented Intelligence'",
"Next: real-time AI clinical decision support"]),
(GREEN_ACC, "🫀 3D Bioprinting",
["Market: $1.9 Bn (2025) → $14 Bn by 2036",
"Bladder, skin, cartilage implanted successfully",
"Vascularisation remains key unsolved challenge",
"AI + bioprinting accelerating tissue design",
"Full solid organs: 5–15 years estimate",
"Next: clinical-scale kidney & liver printing"]),
(ORANGE_ACC, "🦾 Robotic Surgery",
["Less blood loss, faster recovery proven",
"Cost: +20–40% higher than traditional",
"Da Vinci performs 2M+ cases/year globally",
"Market growing to $24 Bn by 2031",
"Haptic feedback — next frontier",
"Next: AI-guided autonomous sub-tasks"]),
]
cx = Inches(0.25)
for col, title, bullets in cols:
cw = Inches(4.15)
add_rect(s9, cx, Inches(2.0), cw, Inches(5.0), RGBColor(0x0E, 0x1C, 0x38))
add_rect(s9, cx, Inches(2.0), cw, Inches(0.55), col)
add_text(s9, title, cx + Inches(0.1), Inches(2.0), cw - Inches(0.2), Inches(0.55),
size=15, bold=True, color=TEXT_DARK, v_anchor=MSO_ANCHOR.MIDDLE)
pts = []
for b in bullets:
pts.append(("✔ " + b, False, LIGHT_GREY))
pts.append(("", False, LIGHT_GREY))
add_multiline(s9, pts, cx + Inches(0.15), Inches(2.65), cw - Inches(0.3),
Inches(4.2), size=12, line_space_pt=3)
cx += Inches(4.35)
# Bottom strip
add_rect(s9, 0, Inches(7.1), W, Inches(0.4), MID_BLUE)
add_text(s9,
"Technology empowers clinicians — the future of medicine belongs to those who embrace it",
Inches(0.3), Inches(7.1), Inches(13), Inches(0.4),
size=12, italic=True, color=ACCENT_CYAN, align=PP_ALIGN.CENTER,
v_anchor=MSO_ANCHOR.MIDDLE)
# ── Save ─────────────────────────────────────────────────────────────────────
out = "/tmp/workspace/future-medicine-pptx/Future_of_Medicine_Innovation.pptx"
buf = BytesIO()
prs.save(buf)
with open(out, "wb") as f:
f.write(buf.getvalue())
print(f"Saved: {out}")
cd /tmp/workspace/future-medicine-pptx && python build_pptx.py
python3 -c " from pptx import Presentation prs = Presentation('/tmp/workspace/future-medicine-pptx/Future_of_Medicine_Innovation.pptx') print(f'Slides: {len(prs.slides)}') for i, slide in enumerate(prs.slides, 1): texts = [] for shape in slide.shapes: if shape.has_text_frame: t = shape.text_frame.text.strip() if t: texts.append(t[:60]) print(f' Slide {i}: {texts[:3]}') import os size = os.path.getsize('/tmp/workspace/future-medicine-pptx/Future_of_Medicine_Innovation.pptx') print(f'File size: {size:,} bytes') "
Future of Medicine Innovation
Presentation · PPTX
| # | Slide | Key Content |
|---|---|---|
| 1 | Title Slide | "The Future of Medicine & Innovation" with three colour-coded topic pills |
| 2 | AI in Diagnosis — Overview | Stats boxes: 81% physician AI use (AMA 2026), 63% active adoption, 1,250+ FDA-approved AI devices |
| 3 | AI: Replace vs. Empower | Two-panel debate layout; "Replace" arguments vs. "Empower" evidence; the consensus quote |
| 4 | 3D Bioprinting — Introduction | Crisis stats (100,000+ on waitlists, 17 die/day), chronological milestone timeline 2006-2026 |
| 5 | 3D Bioprinting — How It Works | 6-step process (Scan → Design → Bioink → Print → Mature → Implant) + challenge cards |
| 6 | Robotic Surgery — Introduction | What robotic surgery is, common procedures, key advantages (precision, tremor filter, 3D vision) |
| 7 | Robotic vs. Traditional — Head-to-Head | 8-row comparison table: hospital stay, blood loss, recovery, cost, learning curve, outcomes |
| 8 | Robotic Surgery — Costs & Barriers | $1.5-2M system cost, $24 Bn market by 2031, key limitations, next-generation roadmap |
| 9 | Summary & Future Outlook | Three-column takeaway cards (one per topic) with data points and "what's next" |
Correct all the Grammer and From the uploaded presentation, I can: Correct grammar, spelling, and punctuation. Improve sentence structure and make the text more professional. Fix formatting inconsistencies (fonts, spacing, alignment, capitalization). Simplify or strengthen the content while keeping the meaning. Verify statistics and references if you want me to use up-to-date sources. Improve the visual flow and slide layout by suggesting better organization.