You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.5 KiB
73 lines
2.5 KiB
"""digitalImageProcessing URL Configuration
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
https://docs.djangoproject.com/en/4.0/topics/http/urls/
|
|
Examples:
|
|
Function views
|
|
1. Add an import: from my_app import views
|
|
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
|
Class-based views
|
|
1. Add an import: from other_app.views import Home
|
|
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
|
Including another URLconf
|
|
1. Import the include() function: from django.urls import include, path
|
|
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
|
"""
|
|
from django.contrib import admin
|
|
from django.urls import path
|
|
from firstapp import views
|
|
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
path('index/',views.index),
|
|
path('',views.none),
|
|
path('base/draw/',views.base_draw),
|
|
path('RGB/draw/',views.RGB_draw),
|
|
path('HSV/draw/',views.HSV_draw),
|
|
path('and/logic/',views.and_logic),
|
|
path('or/logic/',views.or_logic),
|
|
path('not/logic/',views.not_logic),
|
|
path('add/logic/',views.add_logic),
|
|
path('sub/logic/',views.sub_logic),
|
|
path('multi/logic/',views.multi_logic),
|
|
path('divide/logic/',views.divide_logic),
|
|
path('expend/',views.expend),
|
|
path('turn/',views.turn),
|
|
path('affine/',views.affine),
|
|
path('gray/histogram/',views.gray_histogram),
|
|
path('fourier/',views.fourier),
|
|
path('edge/detect/',views.edge_detect),
|
|
path('roberts/',views.roberts),
|
|
path('prewitt/',views.prewitt),
|
|
path('laplacian/',views.laplacian),
|
|
path('log/',views.log),
|
|
path('canny/',views.canny),
|
|
path('hough/',views.hough),
|
|
path('morphology/',views.morphology),
|
|
path('erode/',views.erode),
|
|
path('swell/',views.swell),
|
|
path('open/',views.open),
|
|
path('close/',views.close),
|
|
path('noise/',views.noise),
|
|
path('mean/filter/',views.mean_filter),
|
|
path('sort/filter/',views.sort_filter),
|
|
path('choose/filter/',views.choose_filter),
|
|
path('blank/smooth/',views.blank_smooth),
|
|
path('low/filter/',views.low_filter),
|
|
path('high/filter/',views.high_filter),
|
|
path('blank/sharp/',views.blank_sharp),
|
|
path('draw/gray/',views.draw_gray),
|
|
path('diff/gray/',views.diff_gray),
|
|
path('color/histogram/',views.color_histogram),
|
|
path('small/wave/',views.small_wave),
|
|
path('canny/style/',views.canny_style),
|
|
path('feather/style/',views.feather_style),
|
|
path('la/muse/style/',views.la_muse_style),
|
|
path('mosaic/style/',views.mosaic_style),
|
|
path('starry/style/',views.starry_style),
|
|
path('the/scream/',views.the_scream)
|
|
|
|
]
|