Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
website
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CSE 373
21wi
website
Commits
d11747d4
Commit
d11747d4
authored
4 years ago
by
Kevin Lin
✨
Browse files
Options
Downloads
Patches
Plain Diff
image-processing: Divide adapter example into multiple classes
parent
927f4ca1
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#396516
passed with stages
Stage: build
Stage: deploy
in 45 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
image-processing/index.md
+6
-0
6 additions, 0 deletions
image-processing/index.md
with
6 additions
and
0 deletions
image-processing/index.md
+
6
−
0
View file @
d11747d4
...
...
@@ -109,19 +109,25 @@ public class ExampleGraph implements Graph<Node> {
return
node
.
neighbors
();
}
}
```
```
java
public
class
Source
implements
Node
{
public
List
<
Node
>
neighbors
()
{
...
}
}
```
```
java
public
class
Sink
implements
Node
{
public
List
<
Node
>
neighbors
()
{
...
}
}
```
```
java
public
class
Pixel
implements
Node
{
public
List
<
Node
>
neighbors
()
{
...
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment