LPX
commited on
Commit
·
0457419
1
Parent(s):
392abb7
docs: enhance docstring for Bit Plane Extractor interface to improve clarity and usability
Browse files- app_mcp.py +9 -8
app_mcp.py
CHANGED
@@ -569,15 +569,16 @@ with gr.Blocks(css="#post-gallery { overflow: hidden !important;} .grid-wrap{ ov
|
|
569 |
|
570 |
|
571 |
with gr.Tab("Bit Plane Values", visible=False):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
572 |
gr.Interface(
|
573 |
-
|
574 |
-
|
575 |
-
Args:
|
576 |
-
image: PIL Image to analyze
|
577 |
-
channel: Color channel to extract bit plane from ("Luminance", "Red", "Green", "Blue", "RGB Norm")
|
578 |
-
bit_plane: Bit plane index to extract (0-7)
|
579 |
-
filter_type: Filter to apply ("Disabled", "Median", "Gaussian")
|
580 |
-
"""
|
581 |
fn=bit_plane_extractor,
|
582 |
inputs=[
|
583 |
gr.Image(type="pil"),
|
|
|
569 |
|
570 |
|
571 |
with gr.Tab("Bit Plane Values", visible=False):
|
572 |
+
"""Forensics Tool: Bit Plane Extractor
|
573 |
+
|
574 |
+
Args:
|
575 |
+
image: PIL Image to analyze
|
576 |
+
channel: Color channel to extract bit plane from ("Luminance", "Red", "Green", "Blue", "RGB Norm")
|
577 |
+
bit_plane: Bit plane index to extract (0-7)
|
578 |
+
filter_type: Filter to apply ("Disabled", "Median", "Gaussian")
|
579 |
+
"""
|
580 |
gr.Interface(
|
581 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
582 |
fn=bit_plane_extractor,
|
583 |
inputs=[
|
584 |
gr.Image(type="pil"),
|